我在调用这种类型的默认数字键盘时遇到了这种类型的问题。请建议我可以为此做些什么。
谢谢,拉克什
如果要在EditText
小部件中打开数字键盘,可以将 设置inputType
为number
。参考
android:inputType="number"
使用此代码:
input.setRawInputType(Configuration.KEYBOARD_12KEY);
它可能会起作用。
<EditText
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:inputType="phone"
></EditText>