我有一个带背景图片的编辑文字。当我点击编辑文本时,我应该输入数字。 所以,我应该显示一个数字小键盘。我通过android:inputtype =“Phone”方法做到了这一点。但我没有得到数字键盘。请帮帮我>?
答案 0 :(得分:3)
为此你需要将EditText的Input type属性设置为number。
机器人:的inputType = “数量”
答案 1 :(得分:0)
使用此.. ..
editview.setInputType(InputType.TYPE_CLASS_NUMBER);
最佳V.k
答案 2 :(得分:0)
你有两个解决方案
第一个是在布局中做到这样的android:inputType =“”...见下面的lastline:
<EditText android:id="@+id/getLat"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:cursorVisible="true"
android:editable="true"
android:singleLine="true"
android:layout_weight="1"
android:inputType="numberDecimal"
/>