方法1.:
调用代码:
//自动弹出键盘
InputMethodManager inputManager = (InputMethodManager) getApplication().getSystemService(Context.INPUT_METHOD_SERVICE);
inputManager.toggleSoftInput(0, InputMethodManager.HIDE_NOT_ALWAYS);
使用handler延时。
问题解决。
如果直接在oncreate()中调用,没有进行延时,输入法还是无法弹出。
方法2:
/**
* 显示键盘
*
* @param context
* @param view
*/
public static void showInputMethod(Context context, View view) {
InputMethodManager im = (InputMethodManager) context.getSystemService(Context.INPUT_METHOD_SERVICE);
im.showSoftInput(view, 0);
}
方法3:
给activity配置加入android:windowSoftInputMode="adjustResize"。
问题解决。
个人感觉方法3比较简单易用,但是可能会造成布局混乱