首页 > 移动平台 > 详细

Android任意时刻、任意代码处全屏

时间:2015-02-12 22:51:40      阅读:307      评论:0      收藏:0      [点我收藏+]
public void toggleFullscreen(boolean fullScreen)
 {
  //fullScreen为true时全屏,否则相反
  
     WindowManager.LayoutParams attrs = getWindow().getAttributes();
     
     if (fullScreen)
     {
         attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
     }
     else
     {
         attrs.flags &= ~WindowManager.LayoutParams.FLAG_FULLSCREEN;
     }
     
     getWindow().setAttributes(attrs);
 }

Android任意时刻、任意代码处全屏

原文:http://blog.csdn.net/zhangphil/article/details/43767671

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!