首页 > 代码库 > 微信漂流瓶点击屏幕任何地方 title隐藏||显示代码

微信漂流瓶点击屏幕任何地方 title隐藏||显示代码


点击前....

技术分享


点击后...

技术分享




实现代码:


private void full(boolean enable) {
        if (enable) {
            WindowManager.LayoutParams lp = getWindow().getAttributes();
            lp.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
            getWindow().setAttributes(lp);
            getWindow().addFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
        } else {
            WindowManager.LayoutParams attr = getWindow().getAttributes();
            attr.flags &= (~WindowManager.LayoutParams.FLAG_FULLSCREEN);
            getWindow().setAttributes(attr);
            getWindow().clearFlags(WindowManager.LayoutParams.FLAG_LAYOUT_NO_LIMITS);
        }
    }


微信漂流瓶点击屏幕任何地方 title隐藏||显示代码