Android捕获监听Home键、最近任务列表键

  1. package zhangphil.home;  
  2.   
  3. import android.app.Activity;  
  4. import android.content.BroadcastReceiver;  
  5. import android.content.Context;  
  6. import android.content.Intent;  
  7. import android.content.IntentFilter;  
  8. import android.os.Bundle;  
  9. import android.widget.Toast;  
  10.   
  11. public class MainActivity extends Activity {  
  12.   
  13.     private MyReceiver receiver;  
  14.   
  15.     @Override  
  16.     protected void onCreate(Bundle savedInstanceState) {  
  17.         super.onCreate(savedInstanceState);  
  18.         // setContentView(R.layout.activity_main);  
  19.   
  20.         receiver = new MyReceiver();  
  21.         IntentFilter homeFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);  
  22.   
  23.         registerReceiver(receiver, homeFilter);  
  24.     }  
  25.   
  26.     @Override  
  27.     public void onDestroy() {  
  28.         unregisterReceiver(receiver);  
  29.         super.onDestroy();  
  30.     }  
  31.   
  32.     private class MyReceiver extends BroadcastReceiver {  
  33.   
  34.         private final String SYSTEM_DIALOG_REASON_KEY = "reason";  
  35.         private final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";  
  36.         private final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";  
  37.   
  38.         @Override  
  39.         public void onReceive(Context context, Intent intent) {  
  40.             String action = intent.getAction();  
  41.             if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS)) {  
  42.                 String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);  
  43.   
  44.                 if (reason == null)  
  45.                     return;  
  46.   
  47.                 // Home键  
  48.                 if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY)) {  
  49.                     Toast.makeText(getApplicationContext(), "按了Home键", Toast.LENGTH_SHORT).show();  
  50.                 }  
  51.   
  52.                 // 最近任务列表键  
  53.                 if (reason.equals(SYSTEM_DIALOG_REASON_RECENT_APPS)) {  
  54.                     Toast.makeText(getApplicationContext(), "按了最近任务列表", Toast.LENGTH_SHORT).show();  
  55.                 }  
  56.             }  
  57.         }  
  58.     }  
  59. }  

你可能感兴趣的:(Android捕获监听Home键、最近任务列表键)