`

android 修改软键盘默认为数字输入

阅读更多
没有物理键盘的android手机都会使用软键盘。
有时候我们需要设置软键盘的默认输入模式位数字模式,方便用户输入。

例如:需求,点下EditText,出现数字输入模式软键盘。
实现方法:

EditText et = (EditText) findViewById(R.id.et);
et.setInputType(InputType.TYPE_CLASS_NUMBER);
分享到:
评论
1 楼 gangbener 2012-06-07  
嗯!Thanks~~

相关推荐

Global site tag (gtag.js) - Google Analytics