Android HOME键屏蔽
Android的HOME键屏蔽需要在activity中重写
@Override public void onAttachedToWindow() { this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD); super.onAttachedToWindow(); }
最后更新:2017-04-02 06:52:11
@Override public void onAttachedToWindow() { this.getWindow().setType(WindowManager.LayoutParams.TYPE_KEYGUARD); super.onAttachedToWindow(); }
最后更新:2017-04-02 06:52:11