简体   繁体   English

显示带有字母数字切换选项的数字键盘

[英]Show numeric keyboard with alphanumeric switching option

Hello can anyone tell me how to show the following keyboard layout pragmatically in android.您好,谁能告诉我如何在 android 中实用地显示以下键盘布局。

1

Rather than choosing the type of keyboard consider setting the input type in the editText via:与其选择键盘类型,不如考虑通过以下方式在 editText 中设置输入类型:

android:inputType="XXXXXXX"

(Doing this can change the type of keyboard that appears when you want to provide input to the editText) (这样做可以更改当您想向 editText 提供输入时出现的键盘类型)

Replace the XXXXX text with any of these values according to your use case.根据您的用例,将 XXXXX 文本替换为这些值中的任何一个。

You can also add the android:imeOptions="XXXXXX" attribute to your editText.您还可以将android:imeOptions="XXXXXX"属性添加到您的 editText。 Replace XXXXXX with any of these values.将 XXXXXX 替换为这些值中的任何一个。

You can learn more here你可以在这里了解更多

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

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