Home > Mobile >  How to choose default Input keyboard?
How to choose default Input keyboard?

Time:09-17

I was developing an android app ,Then i got into how to change key board style. For example in some apps whenever you want to put type something this style of keyboard shows up as a default style, so do you know anything about how can i make an editText that shows such keyboard style for user whenever he/she wanted to type in it?

CodePudding user response:

You would probably want to set the inputType xml attribute of the EditText in your layout xml file

The inputType attribute can have the following values : "phone", "textPassword", "textAutoCorrect". The one that is in your picture is, you guessed it right, the phone option

The Android docs are good enough to display it with some screenshots, You can find them GUI Way

  • Related