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();
    }

相关文章:

  • 2022-12-23
  • 2022-01-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-04
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-10
相关资源
相似解决方案