I have an XML layout file that contains an EditText and a Button. I would like to display the following validation message to provide feedback to the user:
You must enter 4 numbers
What's the best way to go about accomplishing this?
|
I have an XML layout file that contains an
What's the best way to go about accomplishing this?
| ||||
|
feedback
|
|
From my experience, this is the best way:
The result is:
Also, if the input must be numeric, use
| ||||
|
feedback
|
|
On the EditText definition in the xml use android:numeric to bring up the numeric IME and use android:maxLength = "4" to limit the input to 4 digits. Use android:onClick on the button to trigger a click handler.
| |||
|
feedback
|
|
See this : Display input validation errors in popup. I have posted a detailed solution in that answer. | |||
|
feedback
|