Dialog弹出时,EditView获取焦点,软件盘弹出
作者:
吕志豪 | 来源:发表于
2017-12-11 11:34 被阅读0次AlertDialog alertDialog = builder.create();
alertDialog.setOnShowListener(dialog -> {
inflate.etContent
.post(() -> {
inflate.etContent.requestFocus();
InputMethodManager imm =
(InputMethodManager)
builder.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
if (imm != null) {
imm.showSoftInput(inflate.etContent, InputMethodManager.SHOW_IMPLICIT);
}
});
});
本文标题:Dialog弹出时,EditView获取焦点,软件盘弹出
本文链接:https://www.haomeiwen.com/subject/btkiixtx.html
网友评论