-
public interface OnItemClickListener
-
-
Method Summary
Modifier and Type Method Description abstract voidonItemClick(@NonNull() BaseQuickAdapter<out Object, out Object> adapter, @NonNull() View view, int position)Callback method to be invoked when an item in this RecyclerView hasbeen clicked. -
-
Method Detail
-
onItemClick
abstract void onItemClick(@NonNull() BaseQuickAdapter<out Object, out Object> adapter, @NonNull() View view, int position)
Callback method to be invoked when an item in this RecyclerView hasbeen clicked.
- Parameters:
adapter- the adapterview- The itemView within the RecyclerView that was clicked (thiswill be a view provided by the adapter)position- The position of the view in the adapter.
-
-
-
-