themes.xml
917 Bytes
<resources xmlns:tools="http://schemas.android.com/tools">
<!-- Base application theme. -->
<style name="Theme.Nafmii" parent="Theme.MaterialComponents.DayNight.NoActionBar">
<item name="android:windowBackground">@mipmap/splash1</item>
<!-- Customize your theme here. -->
</style>
<style name="Nafmii.Fullscreen" parent="Theme.Nafmii">
<!-- 设置全屏-->
<item name="android:windowFullscreen">true</item>
<item name="android:windowBackground">@mipmap/splash1</item>
</style>
<style name="Nafmii.Fullscreen.NoTitleBar" parent="">
<!-- 避免控件会顶到状态栏上 -->
<item name="android:fitsSystemWindows">false</item>
<!-- 取消Actionbar-->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>