Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> 安卓activity捕獲返回按鈕關閉應用的方法

安卓activity捕獲返回按鈕關閉應用的方法

編輯:關於Android編程

安卓activity捕獲返回按鈕關閉應用的方法

 @Override
 public boolean onKeyDown(int keyCode, KeyEvent event) {
  //按下鍵盤上返回按鈕
  if(keyCode == KeyEvent.KEYCODE_BACK){
   
   new AlertDialog.Builder(this)
   .setIcon(R.drawable.alert_dialog_icon)
   .setTitle("提示")
   .setMessage("是否關閉應用?")
   .setNegativeButton("取消", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int which) {

    }
   })
   .setPositiveButton("確定", new DialogInterface.OnClickListener() {
    public void onClick(DialogInterface dialog, int whichButton) {
     ZhuZhuApp.exit();
    }

   }).show();  
   
   return true;
  }else{  
   return super.onKeyDown(keyCode, event);

  }
 }


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