`

android全屏代码

阅读更多
1、在AndroidManifest.xml的配置文件里面的<activity
里面加入:
 
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"//去掉状态栏及标题栏

2、在setContentView(R.layout.**)前面加入:
 
this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏 
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏 

个人建议用第一种方法!
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics