我在textInputLayout内使用textInputEditText
我必须为我的editText设置背景以实现我的editText的边框 View 。
但是当我在textInputLayout上调用setError()时,整个editText颜色变为红色。
但是我只想更改错误文本的颜色,而不是整个 View 。

设置错误之前:

screen shot

设置错误后:

screen shot

这是我的xml代码:

<android.support.design.widget.TextInputLayout
            android:layout_alignParentTop="true"
            android:id="@+id/ex_pass_holder"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:passwordToggleEnabled="false"
            android:gravity="right">
            <android.support.design.widget.TextInputEditText
                android:id="@+id/ex_pass_et"
                android:layout_width="fill_parent"
                android:layout_height="50dp"
                android:hint="رمز عبور فعلی"
                android:inputType="textPassword"
                android:textColor="#000"
                android:textSize="15sp"
                android:gravity="right|center"
                android:background="@drawable/edittext_bg"
                android:padding="8dp"
                />
        </android.support.design.widget.TextInputLayout>

请帮助我,我在做什么错?

最佳答案

我通过扩展TextInputLayout并覆盖一些方法来解决此问题

public class CustomTextInputLayout extends TextInputLayout {

    public CustomTextInputLayout(Context context, AttributeSet attrs) {
        super(context, attrs);
    }



    @Override
    public void setError(@Nullable CharSequence error) {
        super.setError(error);
        try {
            EditText et = getEditText();
            Drawable editTextBackground = et.getBackground();
            editTextBackground.clearColorFilter();

        }catch (Exception e){
            e.printStackTrace();
        }
    }

    @Override
    protected void drawableStateChanged() {
        super.drawableStateChanged();
        try {
            EditText et = getEditText();
            Drawable editTextBackground = et.getBackground();
            editTextBackground.clearColorFilter();

        }catch (Exception e){
            e.printStackTrace();
        }
    }
}

关于具有自定义背景的Android textInputEditText无法正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44741574/

10-12 02:40