项目进行中,由于为了快速开发于是登录模块便用了DialogFragment来做,自定义了对话框布局,需求是想要登录对话框一显示就把焦点到用户名的输入框,并且自动弹出输入法软键盘。
1. 遇到的问题
然而,一切都没有想象中的那么顺利,用户名的EditText有了焦点还是无法弹出软键盘。
**2. 解决方案 **
a. 监听对话框显示时候的事件。
b. 在事件中给EditText加入获取焦点请求,以及主动唤醒软键盘。
// 对话框显示的时候, 弹出软键盘
Dialog dialog = getDialog();
dialog.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
// 解决EditText, 在dialog中无法自动弹出对话框的问题
showKeyboard(mEtPhone);
}
});
public void showKeyboard(EditText editText) {
if(editText!=null){
//设置可获得焦点
editText.setFocusable(true);
editText.setFocusableInTouchMode(true);
//请求获得焦点
editText.requestFocus();
//调用系统输入法
InputMethodManager inputManager = (InputMethodManager) editText .getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.showSoftInput(editText, InputMethodManager.SHOW_IMPLICIT);
}
}