Je veux setError
quand TextInputLayout
isEmpety
J'ai écrit ce code, mais lorsque j'affiche le message d'erreur, je mets un arrière-plan rouge pour le message d'erreur. TextInputLayout
!
Je le fais. ne pas vouloir Définissez le fond ! Je veux affiche juste un message d'erreur.
Mon code :
if (TextUtils.isEmpty(userName)) {
register_UserName_layout.setError("Insert Username");
}
Code XML :
<android.support.design.widget.TextInputLayout
android:id="@+id/register_userUsernameTextLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/register_headerLayout"
android:layout_margin="10dp"
android:textColorHint="#c5c5c5">
<EditText
android:id="@+id/register_userUserNameText"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/selector_bg_edit"
android:hint="نام کاربری"
android:paddingBottom="2dp"
android:textColor="@color/colorAccent"
android:textCursorDrawable="@drawable/bg_input_cursor"
android:textSize="16sp" />
</android.support.design.widget.TextInputLayout>
Comment puis-je réparer cela ? Merci à tous <3