简体   繁体   English

如何在Android的edittext框中显示数字键盘?

[英]How to show the number keyboard in edittext box in android?

I want to write only integer types in EditText but when I click on EditText it opens the Normal keyboard, but I only need a keyboard with numbers while I am doing this (all in Dialog box). 我只想在EditText中写整数类型,但是当我单击EditText时,它会打开“普通”键盘,但是在执行此操作时,我只需要带有数字的键盘(全部在对话框中)。

Can anyone tell me how to do this? 谁能告诉我该怎么做?

Add this to your edittext xml 将此添加到您的edittext xml

android:inputType="number"

For more info see this 欲了解更多信息请参阅

EDIT: for programmatically setting this 编辑:以编程方式设置此

yourEdittext.setInputType(InputType.TYPE_CLASS_NUMBER);

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM