標籤:監聽home鍵
相信有不少朋友在開發過程中需要監聽HOME鍵的需求,現本人將代碼奉上,希望對大家有所協助!
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
public class HomeWatcher
{
private static final String TAG = "HomeWatcher";
private Context mContext;
private IntentFilter mFilter;
private OnHomePressedListener mListener;
private InnerRecevier mRecevier;
// 回調介面
public interface OnHomePressedListener
{
public void onHomePressed();
public void onHomeLongPressed();
}
public HomeWatcher(Context context)
{
mContext = context;
mFilter = new IntentFilter(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
}
/**
* 設定監聽
*
* @param listener
*/
public void setOnHomePressedListener(OnHomePressedListener listener)
{
mListener = listener;
mRecevier = new InnerRecevier();
}
/**
* 開始監聽,註冊廣播
*/
public void startWatch()
{
if (mRecevier != null)
{
mContext.registerReceiver(mRecevier, mFilter);
}
}
/**
* 停止監聽,登出廣播
*/
public void stopWatch()
{
if (mRecevier != null)
{
mContext.unregisterReceiver(mRecevier);
}
}
/**
* 廣播接收者
*/
class InnerRecevier extends BroadcastReceiver
{
final String SYSTEM_DIALOG_REASON_KEY = "reason";
final String SYSTEM_DIALOG_REASON_GLOBAL_ACTIONS = "globalactions";
final String SYSTEM_DIALOG_REASON_RECENT_APPS = "recentapps";
final String SYSTEM_DIALOG_REASON_HOME_KEY = "homekey";
@Override
public void onReceive(Context context, Intent intent)
{
String action = intent.getAction();
if (action.equals(Intent.ACTION_CLOSE_SYSTEM_DIALOGS))
{
String reason = intent.getStringExtra(SYSTEM_DIALOG_REASON_KEY);
if (reason != null)
{
Log.i(TAG, "action:" + action + ",reason:" + reason);
if (mListener != null)
{
if (reason.equals(SYSTEM_DIALOG_REASON_HOME_KEY))
{
// 短按home鍵
mListener.onHomePressed();
}
else if (reason.equals(SYSTEM_DIALOG_REASON_RECENT_APPS))
{
// 長按home鍵
mListener.onHomeLongPressed();
}
}
}
}
}
}
}
調用時注意:
在初始化調用(如onCreate)時添加如下代碼:
HomeWatcher mHomeWatcher = new HomeWatcher(this);
mHomeWatcher.setOnHomePressedListener(new OnHomePressedListener()
{
@Override
public void onHomePressed()
{
//按了HOME鍵
}
@Override
public void onHomeLongPressed()
{
//長按HOME鍵
}
});
mHomeWatcher.startWatch();
在程式銷毀時(如:onDestroy)時添加如下代碼:
if(mHomeWatcher != null)
mHomeWatcher.stopWatch();// 在銷毀時停止監聽,不然會報錯的。
本文出自 “旦旦家園” 部落格,轉載請與作者聯絡!
Android監聽Home鍵的完美解決方案