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

Android全屏显示

时间:2014-12-17 20:37:47      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   http   ar   io   sp   on   log   

参考地址:http://www.cnblogs.com/-cyb/archive/2012/03/09/Android_FullScreen.html

  • 1、//在onCreat方法中setContentView()之前插入
  • requestWindowFeature(Window.FEATURE_NO_TITLE);//取消标题栏
  • getWindow().setFlags(WindowManager.LayoutParams. FLAG_FULLSCREEN ,
  •               WindowManager.LayoutParams. FLAG_FULLSCREEN);//全屏
  • 注:这种方法在启动activity时会闪现状态栏之后再全屏
  • 2、在manifest里面配置:<activity android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />只在当前Activity内显示全屏
  • <application  android:theme="@android:style/Theme.NoTitleBar.Fullscreen"  />为整个应用配置全屏显示

Android全屏显示

标签:android   style   blog   http   ar   io   sp   on   log   

原文地址:http://www.cnblogs.com/peterpc/p/4170232.html

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