在activity中屏蔽home键的方法

在activity中加上下面这段代码就可以屏蔽home

Java代码 

  1. @Override  
  2.     public boolean onKeyDown(int keyCode, KeyEvent event)   
  3.     {   
  4.         // TODO Auto-generated method stub   
  5.         // 按下键盘上返回按钮   
  6.   
  7.         if (keyCode == KeyEvent.KEYCODE_HOME)   
  8.         {   
  9.                         Log.i("TAG","home");   
  10.             System.exit(0);   
  11.             return true;   
  12.         }   
  13.         else  
  14.             return super.onKeyDown(keyCode, event);   
  15.   
  16.     }  

@Override

public boolean onKeyDown(int keyCode, KeyEvent event)

{

  // TODO Auto-generated method stub

  // 按下键盘上返回按钮

 

  if (keyCode == KeyEvent.KEYCODE_HOME)

  {

                        Log.i("TAG","home");

   System.exit(0);

   return true;

  }

  else

   return super.onKeyDown(keyCode, event);

 

}

 

前提是,要重写onAttachedToWindow()这个方法。

 

Java代码 

  1. @Override  
  2.     public void onAttachedToWindow()   
  3.     {   
  4.         this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);   
  5.         super.onAttachedToWindow();   
  6.     }  

@Override

public void onAttachedToWindow()

{

  this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG);

  super.onAttachedToWindow();

}

 

 

因为android系统自己对home键在PhoneWindowManager中做了处理,不会返回到上层应用。查看源代码:

\frameworks\policies\base\phone\com\android\internal\policy\impl\PhoneWindowManager.java 1089行

Java代码 

  1. if (code == KeyEvent.KEYCODE_HOME) {   
  2.             // If a system window has focus, then it doesn't make sense   
  3.             // right now to interact with applications.   
  4.             WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;   
  5.             if (attrs != null) {   
  6.                 final int type = attrs.type;   
  7.                 if (type == WindowManager.LayoutParams.TYPE_KEYGUARD   
  8.                         || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG) {   
  9.                     // the "app" is keyguard, so give it the key   
  10.                     return false;   
  11.                 }   
  12.                 final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;   
  13.                 for (int i=0; i<typeCount; i++) {   
  14.                     if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {   
  15.                         // don't do anything, but also don't pass it to the app   
  16.                         return true;   
  17.                     }   
  18.                 }   
  19.             }  

if (code == KeyEvent.KEYCODE_HOME) {

            // If a system window has focus, then it doesn't make sense

            // right now to interact with applications.

            WindowManager.LayoutParams attrs = win != null ? win.getAttrs() : null;

            if (attrs != null) {

                final int type = attrs.type;

                if (type == WindowManager.LayoutParams.TYPE_KEYGUARD

                        || type == WindowManager.LayoutParams.TYPE_KEYGUARD_DIALOG) {

                    // the "app" is keyguard, so give it the key

                    return false;

                }

                final int typeCount = WINDOW_TYPES_WHERE_HOME_DOESNT_WORK.length;

                for (int i=0; i<typeCount; i++) {

                    if (type == WINDOW_TYPES_WHERE_HOME_DOESNT_WORK[i]) {

                        // don't do anything, but also don't pass it to the app

                        return true;

                    }

                }

            }

 注意,activity中重写onAttachedToWindow()方法需要api 5以上

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

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值