DrawerActions
class DrawerActions
Espresso actions for using a DrawerLayout.
See Navigation drawer design guide
Summary
Public functions |
|
|---|---|
java-static ViewAction! |
close()Creates an action which closes the |
java-static ViewAction! |
Creates an action which closes the |
java-static Unit |
This function is deprecated. Use |
java-static Unit |
This function is deprecated. Use |
java-static ViewAction! |
open()Creates an action which opens the |
java-static ViewAction! |
Creates an action which opens the |
java-static Unit |
This function is deprecated. Use |
java-static Unit |
This function is deprecated. Use |
java-static ViewAction! |
Creates an action that will wait for the drawer to close. |
Public functions
close
java-static fun close(): ViewAction!
Creates an action which closes the DrawerLayout with gravity START. This method blocks until the drawer is fully closed. No operation if the drawer is already closed.
close
java-static fun close(gravity: Int): ViewAction!
Creates an action which closes the DrawerLayout with the gravity. This method blocks until the drawer is fully closed. No operation if the drawer is already closed.
open
java-static fun open(): ViewAction!
Creates an action which opens the DrawerLayout drawer with gravity START. This method blocks until the drawer is fully open. No operation if the drawer is already open.
open
java-static fun open(gravity: Int): ViewAction!
Creates an action which opens the DrawerLayout drawer with the gravity. This method blocks until the drawer is fully open. No operation if the drawer is already open.
waitForClose
java-static fun waitForClose(): ViewAction!
Creates an action that will wait for the drawer to close. Use this in cases where the closing of the drawer is implicit, such as selecting an item in the drawer. No operation if the drawer is closed. This uses an idling resource to wait for close, so it will fail if it does not close within the idling resource timeout.