码迷,mamicode.com
首页 > 微信 > 详细

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

时间:2015-01-06 18:01:24      阅读:553      评论:0      收藏:0      [点我收藏+]

标签:


点击前....

技术分享


点击后...

技术分享




实现代码:


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隐藏||显示代码

标签:

原文地址:http://blog.csdn.net/tanranran/article/details/42461131

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!