-
public interface OnItemLongClickListener
-
-
Method Summary
Modifier and Type Method Description abstract booleanonItemLongClick(@NonNull() BaseQuickAdapter<out Object, out Object> adapter, @NonNull() View view, int position)callback method to be invoked when an item in this view has beenclick and held -
-
Method Detail
-
onItemLongClick
abstract boolean onItemLongClick(@NonNull() BaseQuickAdapter<out Object, out Object> adapter, @NonNull() View view, int position)
callback method to be invoked when an item in this view has beenclick and held
- Parameters:
adapter- the adapterview- The view whihin the RecyclerView that was clicked and held.position- The position of the view int the adapter
-
-
-
-