询问用户一个数字/整数值
对于超时首选项,我需要向用户询问一个号码。 android 上是否有一些“数字控制”,或者我是否必须使用文本输入并检查用户给出的文本是否为数字?非常感谢!
For a timeout preference I need to ask the user for a number. Is there some kidn of "number control" on android or do I have to use a text input and check if the text given by the user if a number? Thank you very much!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在文本框的图形布局视图中,您可以选择
属性>输入类型>数字
或者在 xml 视图中,您可以将“android:inputType="number"”添加到 EditText
In the graphical layout view for the textbox you can select
Properties>Input Type>Number
or in the xml view you can add "android:inputType="number"" to the EditText
尝试将此属性添加到您的编辑文本字段中。这将只接受数字。
将此属性添加到您的编辑文本中。
try this to your edit text field.. this will accept only number..
add this property to your edit text..