WearableDrawerView.DrawerState
public
static
abstract
@interface
WearableDrawerView.DrawerState
implements
Annotation
This @interface is deprecated.
use the androidx.wear.widget.drawer.WearableDrawerView provided by the Jetpack Wear library instead.
Enumeration of possible drawer states.
Summary
Constants | |
|---|---|
int |
STATE_DRAGGING
Indicates that the drawer is currently being dragged by the user. |
int |
STATE_IDLE
Indicates that the drawer is in an idle, settled state. |
int |
STATE_SETTLING
Indicates that the drawer is in the process of settling to a final position. |
Inherited methods | |
|---|---|
|
From interface
java.lang.annotation.Annotation
abstract
Class<? extends Annotation>
annotationType()
abstract
boolean
equals(Object arg0)
abstract
int
hashCode()
abstract
String
toString()
| |
Constants
STATE_DRAGGING
public static final int STATE_DRAGGING
Indicates that the drawer is currently being dragged by the user.
Constant Value: 1 (0x00000001)
STATE_IDLE
public static final int STATE_IDLE
Indicates that the drawer is in an idle, settled state. No animation is in progress.
Constant Value: 0 (0x00000000)
STATE_SETTLING
public static final int STATE_SETTLING
Indicates that the drawer is in the process of settling to a final position.
Constant Value: 2 (0x00000002)