我可以用大写字母显示键盘:
android:inputType="textCapCharacters"
但我能显示数字行吗与
android:inputType="textVisiblePassword"
我可以在按住键盘上的shift键时获得所需的显示example但是我可以初始化editText来显示它吗?附注:已尝试
android:inputType="textVisiblePassword|textCapCharacters"
但没有成功。
mutmk8jj1#
您是否尝试过将android:textAllCaps="true"与android:inputType="textVisiblePassword"结合使用?无论如何,我不认为它会导致相同的每一个设备,因为它是键盘特定的,无论它有号码行与否。
android:textAllCaps="true"
s4chpxco2#
**android:inputType=“textCapCharacters”**仅在设备键盘启用自动大写设置时才有效。
nnsrf1az3#
文本大写字符|textVisiblePassword对我来说工作正常。
3条答案
按热度按时间mutmk8jj1#
您是否尝试过将
android:textAllCaps="true"
与android:inputType="textVisiblePassword"
结合使用?无论如何,我不认为它会导致相同的每一个设备,因为它是键盘特定的,无论它有号码行与否。
s4chpxco2#
**android:inputType=“textCapCharacters”**仅在设备键盘启用自动大写设置时才有效。
nnsrf1az3#
文本大写字符|textVisiblePassword对我来说工作正常。