Android 去掉标题栏

会挽雕弓如满月,西北望,射天狼。这篇文章主要讲述Android 去掉标题栏相关的知识,希望能为你提供帮助。

Android 去掉标题栏

文章图片

【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 2android:allowBackup="true" 3android:icon="@mipmap/ic_launcher" 4android:label="@string/app_name" 5android:roundIcon="@mipmap/ic_launcher_round" 6android:supportsRtl="true" 7android:theme="@style/AppTheme">

 
参考资料
Android Studio中去除应用标题栏

    推荐阅读