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)