这是我的xml布局:

<TextView
            android:id="@+id/forgotPasswordTextView"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginBottom="15dp"
            android:gravity="center"
            android:onClick="@{ () -> presenter.doForgotPassword()}"
            android:text="@string/forgot_password"
            android:textColor="#bbbbbb"
            android:textSize="13sp"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintEnd_toEndOf="@+id/loginTextView"
            app:layout_constraintStart_toStartOf="@+id/loginTextView" />


在这里@ string / forgot_password

<string name="forgot_password"><u>Forgot password?</u></string>


结果,带下划线的文字。真好

但是我想编写Espresso测试来检查TextView中的文本是否带有下划线?我该怎么做?

android-espresso - 安卓Espresso:如何编写测试以检查TextView上是否有下划线?-LMLPHP

最佳答案

如果是Espresso测试,则只需创建一个新的匹配器,如下所示:

public static Matcher<View> withUnderlinedText() {
    return new BoundedMatcher<View, TextView>(TextView.class) {
        @Override
        protected boolean matchesSafely(TextView textView) {
                CharSequence charSequence = textView.getText();
                UnderlineSpan[] underlineSpans = ((SpannedString) charSequence).getSpans(0, charSequence.length(), UnderlineSpan.class);

                return underlineSpans != null && underlineSpans.length > 0;
        }

        @Override
        public void describeTo(Description description) {
        }
    };
}


并如下使用:

onView(withId(R.id.forgotPasswordTextView)).check(matches(withUnderlinedText()));

关于android-espresso - 安卓Espresso:如何编写测试以检查TextView上是否有下划线?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50818283/

10-12 06:10