本文整理汇总了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);
}
};
}