Only show number buttons on Soft Keyboard in Android?

前端 未结 8 1454
栀梦
栀梦 2020-12-01 10:06

On the soft keyboard in Android you can set the soft keyboard to show the numbers instead of a-z keyboard using android:inputType=\"numberDecimal\". However, wh

8条回答
  •  悲哀的现实
    2020-12-01 10:54

    You must only add this line on your code:

    input.setRawInputType(Configuration.KEYBOARD_12KEY);
    

    this will show only the numeric keyboard.

提交回复
热议问题