-
public interface OnModelLongClickListener<T extends EpoxyModel<out Object>, V>
-
-
Method Summary
Modifier and Type Method Description abstract booleanonLongClick(T model, V parentView, View clickedView, int position)Called when the view bound to the model is clicked. -
-
Method Detail
-
onLongClick
abstract boolean onLongClick(T model, V parentView, View clickedView, int position)
Called when the view bound to the model is clicked.
- Parameters:
model- The model that the view is bound to.parentView- The view bound to the model which received the click.clickedView- The view that received the click.position- The position of the model in the adapter.
-
-
-
-