我有一个EditText,我只希望在其中插入整数值。谁能告诉我该用哪个属性?
当前回答
我不知道13年的正确答案是什么,但今天是
myEditText.setKeyListener (DigitsKeyListener。getInstance(null, false, true));//正十进制数
你得到的一切,包括屏幕上的键盘是一个数字键盘。
几乎一切。Espresso以其无限的智慧,让typeText(“…”)莫名其妙地绕过过滤器进入垃圾…
其他回答
在代码中,你可以这样做
ed_ins.setInputType(InputType.TYPE_CLASS_NUMBER);
添加android:inputType="number"作为XML属性。
我需要捕捉按下键盘上的输入与TextWatcher。但我发现所有的数字键盘android:inputType="number"或"numberDecimal"或"numberPassword"等不允许我捕捉进入时,用户按下它。
我尝试了android:digits="0123456789\n",所有的数字键盘都开始使用Enter和TextWatcher。
所以我的方法是:
android:digits="0123456789\n"
android:inputType="numberPassword"
加上editText.setTransformationMethod(空)
多亏了barmaley和abhiank。
您可以在XML中使用它
<EditText
android:id="@+id/myNumber"
android:digits="123"
android:inputType="number"
/>
or,
android:inputType="numberPassword" along with editText.setTransformationMethod(null); to remove auto-hiding of the number.
or,
android:inputType="phone"
您可以通过编程方式使用 editText.setInputType (InputType.TYPE_CLASS_NUMBER);
对于只有数字输入使用android:inputType="numberPassword"连同editText.setTransformationMethod(null);删除号码的自动隐藏。
OR
android: inputType =“电话”
对于只有数字输入,我觉得这两个方法比android更好:inputType="number"。将“number”作为inputType的限制在于,键盘允许切换到字符,也允许输入其他特殊字符。“numberPassword”inputType没有这些问题,因为键盘只显示数字。即使是“phone”inputType也可以工作,因为键盘不允许你切换到字符。但你仍然可以输入一些特殊字符,如+、/、N等。
android:inputType="numberPassword" with editText.setTransformationMethod(null);
inputType =“电话”
inputType =“当家”
推荐文章
- 这是在Android中获取用户位置的好方法
- Android从左到右幻灯片动画
- 如何检索视图的维度?
- 如何改变菜单项的文本颜色在安卓?
- Android选择器和文本颜色
- 视图绑定-我如何获得包含布局的绑定?
- 在Android Studio中改变矢量资产的填充颜色
- 在构建中编写注释的语法是什么?gradle文件?
- 如何以编程方式添加按钮色调
- 用Android Studio进行调试永远停留在“等待调试器”状态
- Openssl不被视为内部或外部命令
- 无法执行dex:在Eclipse中超过GC开销限制
- 如何以编程方式将视图添加到视图
- 单击url会打开默认浏览器
- 使用Retrofit刷新OAuth令牌,而不修改所有调用