Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以从键盘获取当前输入类型(文本或数字)?或者当输入类型改变时是否触发了事件?我需要根据用户退出该屏幕时的输入类型在屏幕上设置输入类型。谢谢
editText.getInputType();
这些方法以整数格式返回 EditTextBox 的 Input 类型。
您可以像这样使用 InputType 接口获取所有 InputTyp
InputType.TYPE_CLASS_NUMBER; InputType.TYPE_CLASS_TEXT;