package com.ody.photopicker.event; import com.ody.photopicker.entity.Photo; /** * Created by Samuel on 15/6/20. */ public interface OnItemCheckListener { /*** * * @param position 所选图片的位置 * @param path 所选的图片 * @param selectedItemCount 已选数量 * @return enable check */ boolean onItemCheck(int position, Photo path, int selectedItemCount); }