I have an EditText field in my project which stands for the full name of the person.So I want only letters and spaces to be allowed in it.So I tried the following in the
Below change worked for me:-
android:digits="abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ"
Put space in between your strings. If you put space at the end of a string it will get trimmed off automatically.
I have used space after ending of small letters and starting with capital letters.