Eve*_*aak 6 android numbers textinput android-softkeyboard
我搜索了很长时间才得到答案,现在是时候在stackoverflow上问我的问题了.
我无法想象Android OS无法让软键盘以数字/符号代码开头并让用户能够切换回字母?
我已经尝试过但没有成功:
代码:
editTextHouseNumber.setRawInputType(InputType.TYPE_CLASS_NUMBER);
editTextHouseNumber.setInputType(InputType.TYPE_CLASS_NUMBER);
Run Code Online (Sandbox Code Playgroud)
xmlLayoutFile:
android:inputType="textPostalAddress"
android:inputType="number|textCapCharacters"
android:inputType="number"
Run Code Online (Sandbox Code Playgroud)
请帮忙
据我了解,您的问题是您希望在屏幕启动后立即打开数字类型的键盘。试试这个是否是你想要的。
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="number">
<requestFocus/>
</EditText>
Run Code Online (Sandbox Code Playgroud)