Android editText自动弹出软键盘

new Timer().schedule(new TimerTask() {

   public void run() {
      InputMethodManager inputManager = (InputMethodManager) editText.getContext().getSystemService(Context.INPUT_METHOD_SERVICE);
      inputManager.showSoftInput(editText, 0);
   }

}, 500);

你可能感兴趣的:(Android editText自动弹出软键盘)