主动弹出软键盘
1、让EditView获取焦点
mEditView.requestFocus();
2、弹出软件盘
InputMethodManager mInputMethodManager = (InputMethodManager) this.getSystemService(Context.INPUT_METHOD_SERVICE);
mInputMethodManager.showSoftInput(mEditView, 0);