一:軟鍵盤自動(dòng)彈出。
private EditText top_middle;//輸入框 //-------------------------------------彈出軟鍵盤----------------------------------- top_middle.setFocusable(true); top_middle.setFocusableInTouchMode(true); top_middle.requestFocus(); InputMethodManager inputManager = (InputMethodManager) top_middle.getContext().getSystemService( Context.INPUT_METHOD_SERVICE); inputManager.showSoftInput(top_middle, 0); Timer timer = new Timer(); timer.schedule(new TimerTask() { public void run() { InputMethodManager inputManager = (InputMethodManager) top_middle.getContext().getSystemService( Context.INPUT_METHOD_SERVICE); inputManager.showSoftInput(top_middle, 0); } }, 998);