I need to allow alphabets only using EditText (like name) but it's allowing numeric values also
I give FieldType.TEXT_PERSON_NAME -> etField.inputType = InputType.TYPE_TEXT_VARIATION_PERSON_NAME
or InputType.TYPE_TEXT_FLAG_CAP_WORDS
(like android:inputType="textPersonName|textCapWords"
) but it's still allow numeric values. I need to allow alphabets only (like name)
You can use the following code to allow only alphabets in an EditText:
This will allow the user to enter only lowercase, uppercase letters and spaces. If you want to allow special characters or non-English letters, then you can add them to the
android:digits
list.