android中如何隐藏应用程序标题栏和通知栏
1个回答
展开全部
如果想同时隐藏标题栏和通知栏的话:方法1、 在manifest里面的activity加
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 方法2、 在activity的onCreate方法写入以下代码:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏 如果只是想隐藏标题栏的话:方法1、 在manifest里面的activity加
android:theme="@android:style/Theme.NoTitleBar" 方法2、 在activity的onCreate方法写入以下代码:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 方法2、 在activity的onCreate方法写入以下代码:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);//去掉信息栏 如果只是想隐藏标题栏的话:方法1、 在manifest里面的activity加
android:theme="@android:style/Theme.NoTitleBar" 方法2、 在activity的onCreate方法写入以下代码:this.requestWindowFeature(Window.FEATURE_NO_TITLE);//去掉标题栏
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询