如何在数字视图上初始化屏幕键盘?
嘿,我正在制作一个应用程序,用户有时应该在其中写数字。
有没有办法立即显示屏幕键盘的数字视图?这样用户就不会右击“百”而不是“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
在您的编辑文本中使用它...
您还可以使用十进制,带符号
以获取更多详细信息
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
检查 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.我想你想设置 TextView inputType: http:// /developer.android.com/reference/android/widget/TextView.html#setInputType%28int%29 。
专门要求数字键盘的示例位于 http://android-er.blogspot.com/2010/07/some-examples-of-inputtype-on-edittext.html
I think you want to set the TextView inputType: http://developer.android.com/reference/android/widget/TextView.html#setInputType%28int%29 .
An example specifically of asking for a number pad is at http://android-er.blogspot.com/2010/07/some-examples-of-inputtype-on-edittext.html
将以下代码放入 Edittext 视图中。 。 。 。
如果这个提示对你有帮助,那就投票给我吧。 。 。
Put the Below code in to Edittext view. . . .
if this tips helps u then vote me. . .