I'm developing a game that uses the keyboard for input, but I want to display ONLY the alpha characters, no digits or special symbols, when the user touches the input field. Right now, the app looks like the following when the keyboard is open:
How can I replace the soft keyboard with a custom keyboard when the "Type some letters" EditText has focus?
use
android:inputType
andandroid:digits
in yourEditText
xml.This will allow only alphabetic characters and spaces to be inserted
You can also check if the user tried to enter a number or some other non-alphabetical character, and then display a warning to him. Then, you replace it with nothing using
regex
[^\p{L}\p{Nd}]+
- this matches all characters that are neither letters nor digits.Alternatively, you can create your own InputFilter that would filter out any non-alpha characters.
I hope this helps you in some way. ^ - ^
CHANGE
Since they deprecated
KeyboardView
and the other related classes in api 29, disregard my last comment on that class, as they will remove it in the future.The best way to create a custom keyboard is to use the
InputMethodService
class, creating your own customxml
layout.However, as you are developing a game that uses a simpler input method, which would not be useful for the user anywhere outside the game, (messaging apps for example), consider this.
Remember that this solution does not reproduce all the action that a user normally performs with the keyboard. You can easily modify it to suit your needs.
1st create a
keyboard.xml
layout. You can modify this example if you want.Where
@style/alpha
and@style/action
2nd create a constructor for your keyboard.
3rd Initialize your keyboard and manually deal with the life cycle of your activity.
Finally, your main activity layout should look like this
Add
focusableInTouchMode="true"
focusable="true"
andclickable="true"
to all Views where the user interacts, whenever you want the keyboard to be closed. This happens whenever Edittext loses focusThe end result is a keyboard without numbers and special characters.
I used the standard android icons for the example, you can replace them with others.
As I said at the beginning of this edition, this solution does not reproduce all the action that a user normally performs with the keyboard, you can improve it in the best possible way.
I hope this helps you in some way. ^-^