interface OnPullListener
abstract fun onPull(deltaY: Float, currentTranslationY: Float, upwardPull: Boolean, deltaUpwardPull: Boolean, collapseEligible: Boolean): Unit
Called when the user is pulling down / up the expandable page or the list. |
|
abstract fun onRelease(collapseEligible: Boolean): Unit
Called when the user's finger is lifted. |
open class ExpandablePageLayout : BaseExpandablePageLayout, OnPullListener
An expandable / collapsible layout for use with a InboxRecyclerView. |
|
abstract class SimpleOnPullListener : OnPullListener
Empty implementations of PullToCollapseListener.OnPullListener. This way, any custom listener that cares only about a subset of the methods of this listener can subclass this adapter class instead of implementing the interface directly. |