Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android開發中模擬Home鍵操作和關閉手機軟鍵盤

Android開發中模擬Home鍵操作和關閉手機軟鍵盤

編輯:關於Android編程

1,在點擊返回時,不想退出應用,直接模擬HOME鍵操作,可以寫在onKeyDown事件中,也可以寫在其它自己想要實現的地方:

Intent intent = new Intent(Intent.ACTION_MAIN);
// 創建一個新的任務棧(這個必須要寫)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addCategory(Intent.CATEGORY_HOME);
this.startActivity(intent);

2,監聽關閉手機軟鍵盤:

InputMethodManager inputMethodManager = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
if (inputMethodManager != null && this.getCurrentFocus() != null) {
inputMethodManager.hideSoftInputFromWindow(this.getCurrentFocus().getWindowToken(),
InputMethodManager.HIDE_NOT_ALWAYS);
}

3,

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved