EditText自动获得了焦点但没有弹出输入法软键盘?????

2024-12-04 08:15:49
推荐回答(2个)
回答1:

亲测可行:
et_nicname.setFocusable(true);
et_nicname.setFocusableInTouchMode(true);
et_nicname.requestFocus();

Timer timer = new Timer();
timer.schedule(new TimerTask() { //让软键盘延时弹出,以更好的加载Activity

public void run() {
InputMethodManager inputManager =
(InputMethodManager)et_nicname.getContext().
getSystemService(Context.INPUT_METHOD_SERVICE);

inputManager.showSoftInput(et_nicname, 0);
}

}, 800);

回答2:

InputMethodManager im = ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)); im.showSoftInput(tv, 0);