android屏蔽返回键和home键

  1. 屏蔽返回键的代码:
    public boolean onKeyDown(int keyCode,KeyEvent event){
    switch(keyCode){
    case KeyEvent.KEYCODE_HOME:return true;
    case KeyEvent.KEYCODE_BACK:return true;
    case KeyEvent.KEYCODE_CALL:return true;
    case KeyEvent.KEYCODE_SYM: return true;
    case KeyEvent.KEYCODE_VOLUME_DOWN: return true;
    case KeyEvent.KEYCODE_VOLUME_UP: return true;
    case KeyEvent.KEYCODE_STAR: return true;
    }
    return super.onKeyDown(keyCode, event);
    }

    屏蔽home键的代码:
    public void onAttachedToWindow() {
    this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD);
    super.onAttachedToWindow();
    }

本文转自天天_byconan博客园博客,原文链接:http://www.cnblogs.com/tiantianbyconan/archive/2012/03/08/2385528.html,如需转载请自行联系原作者
上一篇:Java代码规范


下一篇:《Redis官方文档》Redis事件库