本文介绍了眼睛指示器与AutoCompleteTextView中的提示错误图标重叠的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

代码:

<android.support.design.widget.TextInputLayout
    android:id="@+id/textInputLayout"
    android:layout_width="match_parent"
    android:layout_height="52dp"
    android:background="@android:color/white"
    android:hint="@string/current_password"
    android:paddingEnd="14dp"
    android:paddingLeft="14dp"
    android:paddingRight="14dp"
    android:paddingStart="14dp"
    android:paddingTop="4dp"
    android:scrollbarAlwaysDrawHorizontalTrack="true"
    android:textColorHint="@color/darkBlue"
    app:layout_constraintTop_toBottomOf="@+id/toolbar"
    app:passwordToggleEnabled="true"
    app:passwordToggleTint="@color/colorAccent"
    tools:layout_editor_absoluteX="0dp">

    <AutoCompleteTextView
        android:id="@+id/actvCurrPass"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inputType="textPassword"
        android:textSize="15sp"
        tools:ignore="Deprecated,RtlHardcoded" />

</android.support.design.widget.TextInputLayout>

调用AutoCompleteTextView#setErrorAutoCompleteTextView#error时的结果:

推荐答案

您需要在TextInputLayout上使用setError()而不是EditText.

You need to use setError() on TextInputLayout instead of EditText.

TextInputLayout textInputLayout = view.findViewById(R.id.textInputLayout);
textInputLayout.setError("Password cannot be empty.");

这篇关于眼睛指示器与AutoCompleteTextView中的提示错误图标重叠的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 15:59