xm
2020-07-21 9a4b76398009cf76c508d61f7e48fb6f5cb7ac2d
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8" ?>
<resources>
    <!-- 其中parent可以为 android:Theme 或 android:Theme.NoTitleBar; android:windowBackground可以为背景图 -->
    <style name="MyTheme" parent="@android:style/Theme.NoTitleBar.Fullscreen">
    <item name="android:windowBackground">@drawable/Loading</item>
    <!-- 隐藏状态栏 -->
    <item name="android:windowFullscreen">false</item>
    <!-- 隐藏标题栏 -->
    <item name="android:windowNoTitle">true</item>
      <item name="android:windowLightStatusBar">true</item>
    <item name="android:windowTranslucentStatus">true</item>  
    </style>
</resources>