在webview中,我默认使用InputType.TYPE_CLASS_NUMBER
来定义数字键盘。
问题是,是否可以使用键盘的一个键在数字和文本键盘之间切换?
目前我的代码是:
@Override
public InputConnection onCreateInputConnection(EditorInfo outAttrs) {
BaseInputConnection ic = new BaseInputConnection(this, true);
outAttrs.inputType = InputType.TYPE_CLASS_NUMBER; // Tells the keyboard to show the number pad
return ic;
}
提前谢谢。