码迷,mamicode.com
首页 > 移动开发 > 详细

使APP默认全屏的代码

时间:2015-11-22 12:32:13      阅读:156      评论:0      收藏:0      [点我收藏+]

标签:

 1  public void toggleFullscreen(boolean fullScreen) {
 2         // fullScreen为true时全屏,否则相反
 3 
 4         WindowManager.LayoutParams attrs = getWindow().getAttributes();
 5 
 6         if (fullScreen) {
 7             attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
 8         } else {
 9             attrs.flags &= ~WindowManager.LayoutParams.FLAG_FULLSCREEN;
10         }
11 
12         getWindow().setAttributes(attrs);
13     }

要使用的时候直接调用方法boolean为true

使APP默认全屏的代码

标签:

原文地址:http://www.cnblogs.com/zzw1994/p/4985520.html

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