监听android的Home键

IntentFilter intentFilter = new IntentFilter();
intentFilter.addAction(Intent.ACTION_CLOSE_SYSTEM_DIALOGS);
mContext.registerReceiver(mReceiver, intentFilter);


private static BroadcastReceiver mReceiver = new BroadcastReceiver() {
<span style="white-space:pre">			</span>@Override
<span style="white-space:pre">			</span>public void onReceive(Context context, Intent intent) {
<span style="white-space:pre">				</span>String reason = intent.getStringExtra("reason");


<span style="white-space:pre">				</span>if (reason == null) {
<span style="white-space:pre">					</span>return;
<span style="white-space:pre">				</span>}
<span style="white-space:pre">				</span>//recentapps 最近app键盘,homekey:home键
<span style="white-space:pre">				</span>if (reason.equals("recentapps") || reason.equals("homekey")) {
<span style="white-space:pre">					</span>//you code
<span style="white-space:pre">				</span>}
<span style="white-space:pre">			</span>}
<span style="white-space:pre">		</span>};



注意:只能动态注册,静态注册收不到广播。但是弹出 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT 等系统级的对话框,静态注册的会受到 广播。


另外参考:< a href='http://blog.csdn.net/peidonghui/article/details/8178559'>锁屏广播也可能此问题
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值