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

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

时间:2015-02-12 22:54:22      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:android   it   

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任意时刻、任意代码处全屏

标签:android   it   

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

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