询问用户一个数字/整数值

发布于 2024-11-17 23:29:22 字数 84 浏览 2 评论 0原文

对于超时首选项,我需要向用户询问一个号码。 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温折酒 2024-11-24 23:29:22

在文本框的图形布局视图中,您可以选择
属性>输入类型>数字
或者在 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

随遇而安 2024-11-24 23:29:22

尝试将此属性添加到您的编辑文本字段中。这将只接受数字。

android:inputType="number"

将此属性添加到您的编辑文本中。

try this to your edit text field.. this will accept only number..

android:inputType="number"

add this property to your edit text..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文