Android键盘未显示
我正在使用AlertDialog显示一个输入框。 当我调用AlertDialog.show()时,对话框中的EditText自动对焦,但软键盘不会自动显示。
如何在显示对话框时自动显示软键盘? (并且没有物理/硬件键盘)。 与我按搜索按钮调用全局搜索时的方式类似,软键盘会自动显示。
一旦对话框打开,你可以尝试下面的方法,从这里取出:
InputMethodManager inputMethodManager = (InputMethodManager)getSystemService(Context.INPUT_METHOD_SERVICE);
inputMethodManager.toggleSoftInputFromWindow(linearLayout.getApplicationWindowToken(), InputMethodManager.SHOW_FORCED, 0);
其他建议也在这里。
链接地址: http://www.djcxy.com/p/93343.html