android4.4 禁止home,Android 4.4.源码 如何屏蔽Home键

做了一个锁屏app替换系统的app ,但是在应用层是无法屏蔽home键的,找了资料,改了源码,终于解决

代码位置

frameworks\base\policy\src\com\android\internal\policy\impl\PhoneWindowManager.java下的

定位到名为interceptKeyBeforeDispatching的函数

0818b9ca8b590ca3270a3433284dd417.png

从函数名我们可以知道此函数是是在分发按键消息之前进行拦截。

查看对KEYCODE_HOME home键的处理

// First we always handle the home key here, so applications

// can never break it, although if keyguard is on, we do let

// it handle it, because that gives us the correct 5 second

// timeout.

if (keyCode == KeyEvent.KEYCODE_HOME) {

// If we have released the home key, and didn't do anything else

// while it was pressed, then it is time to go home!

if (!down) {

cancelPreloadRecentApps();

mHomePressed = false;

if (mHomeConsumed) {

mHomeConsumed = false;

return -1;

}

if (canceled) {

Log.i(TAG, "Ignoring HOME; event canceled.");

return -1;

}

// If an incoming call is ringing, HOME is totally disabled.

// (The user is already on the InCallScreen at this point,

// and his ONLY options are to answer or reject the call.)

try {

ITelephony telephonyService = getTelephonyService();

if (telephonyService != null && telephonyService.isRinging()) {

Log.i(TAG, "Ignoring HOME; there's a ringing incoming call.");

return -1;

}

} catch (RemoteException ex) {

Log.w(TAG, "RemoteException from getPhoneInterface()", ex);

}

// Delay handling home if a double-tap is possible.

if (mDoubleTapOnHomeBehavior != DOUBLE_TAP_HOME_NOTHING) {

mHandler.removeCallbacks(mHomeDoubleTapTimeoutRunnable); // just in case

mHomeDoubleTapPending = true;

mHandler.postDelayed(mHomeDoubleTapTimeoutRunnable,

ViewConfiguration.getDoubleTapTimeout());

return -1;

}

// Go home! wdh add 我在此处屏蔽系统的launcher并且return 0,原来是return -1,改为return 0 交由上层app处理home键

//launchHomeFromHotKey();

return 0;

上层app处理:重写onKeyDown屏蔽home 和back

/**

*

* 屏蔽掉返回键

*

*/

@Override

public boolean onKeyDown(int keyCode, KeyEvent event) {

// TODO Auto-generated method stub

if(keyCode==KeyEvent.KEYCODE_BACK || keyCode==KeyEvent.KEYCODE_HOME){

return true;

}else {

return super.onKeyDown(keyCode, event);

}

}

参考文章:http://www.cnblogs.com/sphere/archive/2014/12/02/4137814.html

参考文章:http://blog.csdn.net/fulinwsuafcie/article/details/7717408

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值