我在使用阿拉伯语设置提示时遇到了问题。请参考Alternating edit text hint not visible for Arabic language 详情。问题在于在xml中使用inputType。我已将其删除,现在可以在edittext字段上单击一个普通的键盘。但我希望用户只输入数字,我希望出现数字键盘。怎么做?
简而言之,inputType的使用不会显示阿拉伯语内容,如果没有使用,那么我会得到字母键盘。
请提前帮助,请提供帮助
答案 0 :(得分:0)
希望你可以使用这个属性android:numeric =“integer”,如果你使用它,请删除单行属性。
<EditText
android:id="@+id/et_account_no"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="@android:color/transparent"
android:cursorVisible="true"
android:gravity="right"
android:hint="@string/hint_account_no"
android:imeOptions="actionNext"
android:numeric="integer"
android:maxLength="12"
android:textColor="@android:color/black"
android:textSize="20sp"
android:padding="@dimen/edittext_padding">
</EditText>
答案 1 :(得分:0)
使用android:inputType="number"
或android:inputType="phone"
点击编辑文字时,它应该为您提供数字小键盘:
以下是我的xml片段,这应该会有所帮助:
<EditText
android:layout_gravity="start"
android:textAlignment="viewStart"
android:hint="my hint"
android:inputType="phone"
android:id="@+id/Nummm"
android:paddingStart="8dp"
android:paddingLeft="8dp"
android:textDirection="rtl"
android:gravity="center_vertical"
android:layout_width="match_parent"
android:background="@android:color/transparent"
android:textColorHint="#767676"
android:backgroundTint="@android:color/transparent"
android:layout_height="fill_parent"
tools:ignore="RtlCompat" />