-
public interface OnModelVisibilityStateChangedListener<T extends EpoxyModel<V>, V>Used to register an onVisibilityChanged callback with a generated model.
-
-
Method Summary
Modifier and Type Method Description abstract voidonVisibilityStateChanged(T model, V view, int visibilityState)This will be called once the visibility changed. -
-
Method Detail
-
onVisibilityStateChanged
abstract void onVisibilityStateChanged(T model, V view, int visibilityState)
This will be called once the visibility changed.
- Parameters:
model- The model being boundview- The view that is being bound to the modelvisibilityState- The new visibility
-
-
-
-