我想显示一个自定义的错误背景为我的电子邮件输入字段每当我有一个无效的电子邮件。
到目前为止,我所能找到的就是如何设置和自定义错误文本,这也给了它一个红色的背景色调。
我一直在努力改变这种背景,但没有成功。
这是我的布局
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/email_field"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginTop="24dp"
android:layout_marginEnd="24dp"
android:elevation="2dp"
app:boxBackgroundMode="none"
app:errorEnabled="true"
app:hintEnabled="false"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView">
<EditText
android:id="@+id/input_email"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="@drawable/input_field"
android:drawableStart="@drawable/ic_baseline_account_circle_24"
android:drawablePadding="8dp"
android:fontFamily="@font/app_font_regular"
android:hint="@string/label_email"
android:imeOptions="actionNext"
android:inputType="textEmailAddress"
android:maxLines="1"
android:padding="8dp"
android:textColor="@color/textColor" />
</com.google.android.material.textfield.TextInputLayout>
字符串
这是我的 input_fielddrawble
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="true">
<shape android:shape="rectangle">
<corners android:radius="8dp" />
<stroke android:width="1dp" android:color="@color/colorPrimary" />
<solid android:color="@color/inputField" />
</shape>
</item>
<item android:state_checked="true" >
<shape android:shape="rectangle">
<corners android:radius="8dp" />
<stroke android:width="1dp" android:color="@color/failed" />
<solid android:color="@color/inputField" />
</shape>
</item>
<item>
<shape android:shape="rectangle">
<corners android:radius="8dp" />
<stroke android:width="1dp" android:color="@color/inputFieldBorder" />
<solid android:color="@color/inputField" />
</shape>
</item>
</selector>
型
要显示错误,我在TextInputLayout
上使用此方法调用
email_field.error = "Invalid Email"
型
这是我的UI没有错误
当我设置错误
时,这是我的UI
这是我希望实现的UI。
3条答案
按热度按时间jutyujz01#
可以使用
app:boxStrokeColor
字符串
xiozqbni2#
你不需要使用
android:background="@drawable/input_field"
。只需用途:
字符串
其中:
型
与
app:boxStrokeColor
定义笔划的选择器app:boxStrokeErrorColor
定义显示错误时笔划使用的颜色。boxStrokeColor
的默认值为:您可以使用选择器。它是默认值:
型
的数据
flmtquvp3#
你好,试着在你的TextInputLayout上使用这个:
字符串