Android 去掉标题栏

Posted 王景迁

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android 去掉标题栏相关的知识,希望对你有一定的参考价值。

  

  修改styles.xml文件

1 <resources>
2 
3     <!-- Base application theme. -->
4     <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
5 
6     </style>
7 
8 </resources>

  在androidManifest.xml中引用styles.xml文件

1 <application
2         android:allowBackup="true"
3         android:icon="@mipmap/ic_launcher"
4         android:label="@string/app_name"
5         android:roundIcon="@mipmap/ic_launcher_round"
6         android:supportsRtl="true"
7         android:theme="@style/AppTheme">

 

  参考资料

  Android Studio中去除应用标题栏

以上是关于Android 去掉标题栏的主要内容,如果未能解决你的问题,请参考以下文章

android中全屏 及 去掉标题栏效果有啥区别

android 开发 如何去掉手机的上边的状态栏

Android studio怎么去掉应用的标题栏

android 怎么去掉状态栏

操作栏标签片段中的片段?

如何在Android中实现全屏,去掉标题栏效果