亲测可行:
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);
InputMethodManager im = ((InputMethodManager) getSystemService(INPUT_METHOD_SERVICE)); im.showSoftInput(tv, 0);