我有这个编辑文本,可以显示数字键盘。它适用于我所有的Android模拟器和一些测试设备,除了显示alpha键盘的Samsung S3 mini。为什么会这样,我该如何解决这个问题呢?我的xml在下面,我在代码中没有做任何特别的事。
<EditText
android:id="@+id/amount"
android:layout_width="0dp"
android:layout_height="match_parent"
android:hint="0"
android:scrollHorizontally="true"
android:digits="0123456789.,"
android:inputType="numberDecimal"
android:layout_weight="2"
android:background="#fff"/>
答案 0 :(得分:3)
我有时不得不使用'手机'输入类型。这取决于是否会提供所需的所有字符。三星往往比人们猜测的更加个性化。这是Android docs的链接https://developer.android.com/training/keyboard-input/style.html#Type。
答案 1 :(得分:1)
android:digits
给我敲响了钟声。制造商有时定制东西。尝试离开该行并根据您的需要应用正确的android:inputType
,在这种情况下似乎是“数字”