• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

测试背景色 espresso Android

用户头像
it1352
帮助3

问题说明

是否可以使用浓缩咖啡检查背景颜色是否与给定颜色匹配?

Is it possible to check if the background color matches a given color with espresso?

更新:

我做了一个自定义匹配器,类似于@Irfan 建议的,谢谢!

I made a custom matcher, similar to what @Irfan suggested, thanks!

public static Matcher<Object> backgroundShouldHaveColor(int expectedColor) {
    return buttondShouldHaveBackgroundColor(equalTo(expectedColor));
}
private static Matcher<Object> buttonShouldHaveBackgroundColor(final Matcher<Integer> expectedObject) {
    final int[] color = new int[1];
    return new BoundedMatcher<Object, Button>( Button.class) {
        @Override
        public boolean matchesSafely(final Button actualObject) {

            color[0] =((ColorDrawable) actualObject.getBackground()).getColor();


            if( expectedObject.matches(color[0])) {
                return true;
            } else {
                return false;
            }
        }
        @Override
        public void describeTo(final Description description) {
            // Should be improved!
            description.appendText("Color did not match " color[0]);
        }
    };
}

正确答案

#1

我不确定,但我们可以检索一些元素的颜色,如按钮和文本视图 `

I am not sure about that but we can retrieve the color of some of elements like button and text views `

Button button = (Button) findViewById(R.id.my_button);
Drawable buttonBackground = button.getBackground();

你可以试试这个

ColorDrawable b_color = (ColorDrawable) button.getBackground();

然后

int color = b_color.getColor();
if (color == R.color.green) {
    log("color is green");
}

希望这能帮助您入门.

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhbcajjc
系列文章
更多 icon
同类精品
更多 icon
继续加载