What's the best way to limit the text length of an EditText in Android?
Is there a way to do this via xml?
|
feedback
|
|
http://androidblogger.blogspot.com/2009/01/numeric-edittext-and-edittext-with-max.html android:maxLength="10" | |||||
feedback
|
|
use an input filter to limit the max length of a text view.
| |||
|
feedback
|
|
You can use: android:maxLength="20" or this method --> http://www.tutorialforandroid.com/2009/02/maxlength-in-edittext-using-codes.html | |||
|
feedback
|
|
For anyone else wondering how to achieve this, here is my extended EditText class EditTextNumeric. .setMaxLength(int) - sets maximum number of digits .setMaxValue(int) - limit maximum integer value .setMin(int) - limit minimum integer value .getValue() - get integer value
example usage:
All other methods and attributes that apply to EditText, of course work too. | ||||
|
feedback
|
|
A note to people who are already using a custom input filter and also want to limit the max length: When you assign input filters in code all previously set input filters are cleared, including one set with android:maxLength. I found this out when attempting to use a custom input filter to prevent the use of some characters that we don't allow in a password field. After setting that filter with setFilters the maxLength was no longer observed. The solution was to set maxLength and my custom filter together programmatically. Something like this:
| |||
|
feedback
|
|
Due to goto10's observation, I put together the following code to protected against loosing other filters with setting the max length:
| |||
|
feedback
|