如何在EditText视图的焦点上默认使用数字小键盘?

Wil*_*ill 2 android android-widget

我有一个EditText字段供用户输入以磅为单位的重量.如何覆盖传统键盘并显示数字键盘?

Wil*_*ill 6

这不适合我.但是,我能够通过以下任一行完成上述任务:

// 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);
Run Code Online (Sandbox Code Playgroud)