Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android調用系統軟鍵盤

Android調用系統軟鍵盤

編輯:關於Android編程

/**  *   * @MethodName: closeInputMethod  * @Description:關閉系統軟鍵盤  * @throws  */ public void closeInputMethod(){ try { ((InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE)) .hideSoftInputFromWindow(getCurrentFocus().getWindowToken(), InputMethodManager.HIDE_NOT_ALWAYS); } catch (Exception e) { }finally{ } } /**  *   * @MethodName: openInputMethod  * @Description:打開系統軟鍵盤  * @throws  */ public void openInputMethod(final EditText editText){ Timer timer = new Timer(); timer.schedule(new TimerTask() { public void run() { InputMethodManager inputManager = (InputMethodManager) editText .getContext().getSystemService( Context.INPUT_METHOD_SERVICE); inputManager.showSoftInput(editText, 0); } }, 200); }
  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved