How to allow alphabets only in EditText Kotlin?

73 Views Asked by At

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)

1

There are 1 best solutions below

0
On

You can use the following code to allow only alphabets in an EditText:

<EditText
    android:id="@+id/your_id"
    android:digits="abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />

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.