Cris
Cris

Reputation: 12194

Android: input type for only non-numeric chars

I have an EditText on which I would like to let user enter only non-numeric chars (say A-Z or a-z): is there a way to do it? All the combinations I used (text, textPersonName and so on) let the user select also numbers.

Upvotes: 1

Views: 2183

Answers (1)

Ted Hopp
Ted Hopp

Reputation: 234795

I think you have to write your own InputFilter and add it to the set of filters for the EditText. Something like this might work:

InputFilter filter = new InputFilter() { 
    public CharSequence filter(CharSequence source, int start, int end, 
        Spanned dest, int dstart, int dend)
    {
        for (int i = start; i < end; i++) { 
            if (!Character.isLetter(source.charAt(i))) { 
                return ""; 
            }
        }
        return null; 
    } 
}; 
edit.setFilters(new InputFilter[]{filter});

Upvotes: 8

Related Questions