如何在数字视图上初始化屏幕键盘?

发布于 2024-11-04 03:54:24 字数 114 浏览 0 评论 0原文

嘿,我正在制作一个应用程序,用户有时应该在其中写数字。

有没有办法立即显示屏幕键盘的数字视图?这样用户就不会右击“百”而不是“100”?

非常感谢

Hey, I'm making an app where users should sometimes write numbers.

Is there a way to display the number view of the onscreen keyboard right away? So the user won't right "hundred" instead of "100"?

Thank you very much

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(4

烟花肆意 2024-11-11 03:54:24
android:numeric="integer"

在您的编辑文本中使用它...

您还可以使用十进制,带符号

以获取更多详细信息

android:numeric="integer"

use this in your edittext ...

you can also use decimal , signed

for more details http://androidblogger.blogspot.com/2009/01/numeric-edittext-and-edittext-with-max.html

开始看清了 2024-11-11 03:54:24

检查 InputType 属性http://developer.android.com/reference/android/widget/TextView.html" rel="nofollow">EditText 类。您可以将其设置为 number,这样用户只能将数字插入到 EditText 中。在这种情况下,键盘应自动显示数字视图。

Check the InputType attribute of the EditText class. You can set it to number so the user can only insert numbers to the EditText. In this case the keyboard should automatically show the number view.

紫﹏色ふ单纯 2024-11-11 03:54:24

将以下代码放入 Edittext 视图中。 。 。 。

android:numeric="integer"
android:phoneNumber="true"

如果这个提示对你有帮助,那就投票给我吧。 。 。

Put the Below code in to Edittext view. . . .

android:numeric="integer"
android:phoneNumber="true"

if this tips helps u then vote me. . .

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