public abstract class

SwipeDismissFrameLayout.Callback

extends java.lang.Object

 java.lang.Object

↳androidx.wear.widget.SwipeDismissFrameLayout.Callback

Overview

Implement this callback to act on particular stages of the dismissal.

Summary

Constructors
publicCallback()

Methods
public voidonDismissed(SwipeDismissFrameLayout layout)

Notifies listeners that the dismissal is complete and the view is now off screen.

public voidonSwipeCanceled(SwipeDismissFrameLayout layout)

Notifies listeners that the swipe gesture has ended without a dismissal.

public voidonSwipeStarted(SwipeDismissFrameLayout layout)

Notifies listeners that the view is now being dragged as part of a dismiss gesture.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public Callback()

Methods

public void onSwipeStarted(SwipeDismissFrameLayout layout)

Notifies listeners that the view is now being dragged as part of a dismiss gesture.

Parameters:

layout: The layout associated with this callback.

public void onSwipeCanceled(SwipeDismissFrameLayout layout)

Notifies listeners that the swipe gesture has ended without a dismissal.

Parameters:

layout: The layout associated with this callback.

public void onDismissed(SwipeDismissFrameLayout layout)

Notifies listeners that the dismissal is complete and the view is now off screen.

Parameters:

layout: The layout associated with this callback.