{% setvar book_path %}/reference/androidx/_book.yaml{% endsetvar %} {% include "_shared/_reference-head-tags.html" %}
public final class GeneralClickAction implements ViewAction
Enables clicking on views.
Public constructors |
|
|---|---|
This method is deprecated. Use |
|
This method is deprecated. Use |
|
GeneralClickAction( |
|
GeneralClickAction( |
|
Public methods |
|
|---|---|
Matcher<View> |
A mechanism for ViewActions to specify what type of views they can operate on. |
String |
Returns a description of the view action. |
void |
perform(UiController uiController, View view)Performs this action on the given view. |
publicGeneralClickAction(
Tapper tapper,
CoordinatesProvider coordinatesProvider,
PrecisionDescriber precisionDescriber
)
publicGeneralClickAction(
Tapper tapper,
CoordinatesProvider coordinatesProvider,
PrecisionDescriber precisionDescriber,
ViewAction rollbackAction
)
public GeneralClickAction(
Tapper tapper,
CoordinatesProvider coordinatesProvider,
PrecisionDescriber precisionDescriber,
int inputDevice,
int buttonState
)
public GeneralClickAction(
Tapper tapper,
CoordinatesProvider coordinatesProvider,
PrecisionDescriber precisionDescriber,
int inputDevice,
int buttonState,
ViewAction rollbackAction
)
public Matcher<View> getConstraints()
A mechanism for ViewActions to specify what type of views they can operate on.
A ViewAction can demand that the view passed to perform meets certain constraints. For example it may want to ensure the view is already in the viewable physical screen of the device or is of a certain type.
public String getDescription()
Returns a description of the view action. The description should not be overly long and should fit nicely in a sentence like: "performing %description% action on view with id ..."
public void perform(UiController uiController, View view)
Performs this action on the given view.
| Parameters | |
|---|---|
UiController uiController |
the controller to use to interact with the UI. |
View view |
the view to act upon. never null. |