本文整理匯總了Java中android.support.test.espresso.ViewAction.getDescription方法的典型用法代碼示例。如果您正苦於以下問題:Java ViewAction.getDescription方法的具體用法?Java ViewAction.getDescription怎麽用?Java ViewAction.getDescription使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類android.support.test.espresso.ViewAction
的用法示例。
在下文中一共展示了ViewAction.getDescription方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: withCustomConstraints
import android.support.test.espresso.ViewAction; //導入方法依賴的package包/類
/**
* From: http://stackoverflow.com/questions/33505953/espresso-how-to-test-swiperefreshlayout/33516360#33516360
* <p>
* ViewPager will throw an error if not 90% of it is displayed. This reduces the restriction.
*
* @param action Action to be done.
* @param constraints Restrictions on the view.
* @return Performs an action on the view.
*/
public static ViewAction withCustomConstraints(final ViewAction action, final Matcher<View> constraints)
{
return new ViewAction()
{
@Override
public Matcher<View> getConstraints()
{
return constraints;
}
@Override
public String getDescription()
{
return action.getDescription();
}
@Override
public void perform(UiController uiController, View view)
{
action.perform(uiController, view);
}
};
}
示例2: withCustomConstraints
import android.support.test.espresso.ViewAction; //導入方法依賴的package包/類
public static ViewAction withCustomConstraints(final ViewAction action, final Matcher<View> constraints) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return constraints;
}
@Override
public String getDescription() {
return action.getDescription();
}
@Override
public void perform(UiController uiController, View view) {
action.perform(uiController, view);
}
};
}
示例3: withCustomConstraints
import android.support.test.espresso.ViewAction; //導入方法依賴的package包/類
public static ViewAction withCustomConstraints(final ViewAction action, final Matcher<View> constraints) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return constraints;
}
@Override
public String getDescription() {
return action.getDescription();
}
@Override
public void perform(UiController uiController, View view) {
action.perform(uiController, view);
}
};
}
示例4: withCustomConstraints
import android.support.test.espresso.ViewAction; //導入方法依賴的package包/類
/** Overwrites the constraints of the specified {@link ViewAction}. */
public static ViewAction withCustomConstraints(
final ViewAction action, final Matcher<View> constraints) {
return new ViewAction() {
@Override
public Matcher<View> getConstraints() {
return constraints;
}
@Override
public String getDescription() {
return action.getDescription();
}
@Override
public void perform(UiController uiController, View view) {
action.perform(uiController, view);
}
};
}