Odpowiedzi:
Nie ma potrzeby korzystania z biblioteki innej firmy, ponieważ Google wprowadził TextInputLayout
jako część design-support-library
.
Idąc za podstawowym przykładem:
<android.support.design.widget.TextInputLayout
android:id="@+id/text_input_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:errorEnabled="true">
<android.support.design.widget.TextInputEditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter your name" />
</android.support.design.widget.TextInputLayout>
Uwaga: ustawienie app:errorEnabled="true"
jako atrybutu TextInputLayout
nie spowoduje zmiany rozmiaru po wyświetleniu błędu - więc w zasadzie blokuje spację.
W celu wykazania błędów poniżej EditText
wystarczy wezwanie #setError
na TextInputLayout
(nie na dziecko EditText
):
TextInputLayout til = (TextInputLayout) findViewById(R.id.text_input_layout);
til.setError("You need to enter a name");
Aby ukryć błąd i zresetować odcień, po prostu zadzwoń til.setError(null)
.
Aby z niego skorzystać TextInputLayout
, musisz dodać do swoich build.gradle
zależności:
dependencies {
compile 'com.android.support:design:25.1.0'
}
Domyślnie linia EditText
będzie czerwona. Jeśli chcesz wyświetlić inny kolor, możesz użyć następującego kodu, gdy tylko zadzwonisz setError
.
editText.getBackground().setColorFilter(getResources().getColor(R.color.red_500_primary), PorterDuff.Mode.SRC_ATOP);
Aby to wyczyścić, po prostu wywołaj clearColorFilter
funkcję, na przykład:
editText.getBackground().clearColorFilter();
textInputLayout.setError("Error messsage")
kolor EditText
powinien zmienić się na czerwony. Aby go zresetować, wystarczy zadzwonić textInputLayout.setError(null)
.
editText.getBackground().setColorFilter(getResources().getColor(R.color.red_500_primary), PorterDuff.Mode.SRC_ATOP);
nie jest już potrzebny z najnowszą biblioteką wsparcia
EditText
, nie TextInputLayout
. Widziałem tę odpowiedź i nadal nie mogłem wymyślić, co muszę zmienić. Bardzo łatwa rzecz do przeoczenia.
Twój EditText
powinien być zapakowany wTextInputLayout
<android.support.design.widget.TextInputLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:id="@+id/tilEmail">
<EditText
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:inputType="textEmailAddress"
android:ems="10"
android:id="@+id/etEmail"
android:hint="Email"
android:layout_marginTop="10dp"
/>
</android.support.design.widget.TextInputLayout>
Aby otrzymać komunikat o błędzie, taki jak chcesz, ustaw błąd na TextInputLayout
TextInputLayout tilEmail = (TextInputLayout) findViewById(R.id.tilEmail);
if (error){
tilEmail.setError("Invalid email id");
}
Należy dodać zależność biblioteki obsługi projektu. Dodaj tę linię do swoich zależności gradle
compile 'com.android.support:design:22.2.0'
Odpowiedź reVerse jest świetna, ale nie wskazała, jak usunąć pływającą etykietkę błędu
Musisz edittext.setError(null)
to usunąć.
Poza tym, jak ktoś zauważył, nie potrzebujeszTextInputLayout.setErrorEnabled(true)
Układ
<android.support.design.widget.TextInputLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/edittext"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter something" />
</android.support.design.widget.TextInputLayout>
Kod
TextInputLayout til = (TextInputLayout) editText.getParent();
til.setError("Your input is not valid...");
editText.setError(null);
TextInputLayout til = (TextInputLayout)editText.getParent();
til.setErrorEnabled(true);
til.setError("some error..");
private EditText edt_firstName;
private String firstName;
edt_firstName = findViewById(R.id.edt_firstName);
private void validateData() {
firstName = edt_firstName.getText().toString().trim();
if (!firstName.isEmpty(){
//here api call for ....
}else{
if (firstName.isEmpty()) {
edt_firstName.setError("Please Enter First Name");
edt_firstName.requestFocus();
}
}
}
EditText
. Bardziej prawdopodobne jest, że będziesz potrzebować czegoś, co zawijaEditText
lub w inny sposób do niego dodaje. Zobacz github.com/rengwuxian/MaterialEditText .