sendtion / XRichText

一个Android富文本类库,支持图文混排,支持编辑和预览,支持插入和删除图片。
1.76k stars 263 forks source link

你好,请问如何在打开页面后自动弹出输入法呢? #57

Closed Jibinghao closed 5 years ago

Jibinghao commented 5 years ago

默认第一行就是输入框,请问如何自动弹出输入法?

sendtion commented 5 years ago
private void openSoftKeyInput(){
        try {
            InputMethodManager imm = (InputMethodManager)getSystemService(INPUT_METHOD_SERVICE);
            if (imm != null && !imm.isActive()){
                et_content.requestFocus();
                //第二个参数可设置为0
                imm.showSoftInputFromInputMethod(et_content.getWindowToken(),
                        InputMethodManager.SHOW_FORCED);
            }
        } catch (Exception e) {
            e.printStackTrace();
        }
    }