我们使用
InputMethodManager imPharamcy = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
imPharamcy .toggleSoftInput(0, InputMethodManager.SHOW_IMPLICIT);
强有力地获得键盘。 但键盘不是数字键盘。 如何使用inputMethod Manager获取仅键盘数字。
在xml中我已经给出了
android:inputType="phone"
android:imeOptions="actionNext"
editText只接受数字 奇怪的是,在模拟器中只出现一个数字键盘,但是在电话号码和特殊字符键盘上出现
答案 0 :(得分:4)
见下面的代码:
// TYPE_CLASS_NUMBER: Class for numeric text. This displays the numbers/symbols keyboard.
editText.setInputType(InputType.TYPE_CLASS_NUMBER);
// TYPE_CLASS_PHONE: Class for a phone number. This displays the phone number keypad.
editText.setInputType(InputType.TYPE_CLASS_PHONE);
希望你明白这一点。