在Java中以编程方式在不同的键盘之间切换

时间:2018-06-08 11:01:15

标签: java android-webview

在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;
    }

提前谢谢。

0 个答案:

没有答案