-
public interface OnModelClickListener<T extends EpoxyModel<out Object>, V>Used to register a click listener on a generated model.
-
-
Method Summary
-
-
Method Detail
-
onClick
abstract void onClick(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.
-
-
-
-