SwipeDismissFrameLayout.Callback
public
static
abstract
class
SwipeDismissFrameLayout.Callback
extends Object
| java.lang.Object | |
| ↳ | androidx.wear.widget.SwipeDismissFrameLayout.Callback |
Implement this callback to act on particular stages of the dismissal.
Summary
Public constructors | |
|---|---|
Callback()
|
|
Public methods | |
|---|---|
void
|
onDismissed(SwipeDismissFrameLayout layout)
Notifies listeners the dismissal is complete and the view now off screen. |
void
|
onSwipeCanceled(SwipeDismissFrameLayout layout)
Notifies listeners that the swipe gesture has ended without a dismissal. |
void
|
onSwipeStarted(SwipeDismissFrameLayout layout)
Notifies listeners that the view is now being dragged as part of a dismiss gesture. |
Inherited methods | |
|---|---|
Public constructors
Callback
public Callback ()
Public methods
onDismissed
public void onDismissed (SwipeDismissFrameLayout layout)
Notifies listeners the dismissal is complete and the view now off screen.
| Parameters | |
|---|---|
layout |
SwipeDismissFrameLayout: The layout associated with this callback.
|
onSwipeCanceled
public void onSwipeCanceled (SwipeDismissFrameLayout layout)
Notifies listeners that the swipe gesture has ended without a dismissal.
| Parameters | |
|---|---|
layout |
SwipeDismissFrameLayout: The layout associated with this callback.
|
onSwipeStarted
public void onSwipeStarted (SwipeDismissFrameLayout layout)
Notifies listeners that the view is now being dragged as part of a dismiss gesture.
| Parameters | |
|---|---|
layout |
SwipeDismissFrameLayout: The layout associated with this callback.
|

