android解决app开启瞬间白屏的问题

来源:互联网 发布:暂七师军乐队 知乎 编辑:程序博客网 时间:2024/04/26 11:55

1.在value中创建一个theme.xml,专门用来管理主题
内容如下

在baselighttheme中可以自定义一些属性,在别的地方可以通过引用的方式直接使用

<style name="BaseLightTheme"                parent="@style/Theme.AppCompat.Light">    <item name="textColor">@color/textColor</item></style><!--去掉actionbar的主題--><style name="NoActionBarTheme" parent="BaseLightTheme">    <item name="windowActionBar">false</item>    <item name="windowNoTitle">true</item></style><!--全屏主題--><style name="FullScreenTheme" parent="NoActionBarTheme">    <item name="android:windowFullscreen">true</item></style><!--使用背景图片解决开启app瞬间白屏的问题,原来打算使用透明色,但是响应还是慢--><style name="SplashTheme" parent="FullScreenTheme">    <item name="android:windowBackground">@mipmap/img_splash</item>    <item name="android:windowContentOverlay">@null</item></style><!-- 全透明的背景 --><style name="TransparentTheme" parent="FullScreenTheme">    <item name="android:windowBackground">@color/transparent</item>    <item name="android:windowIsTranslucent">true</item></style>

2.在splash界面中实用该主题即可

 <!-- splash界面 -->        <activity            android:name=".main.SplashActivity"            android:screenOrientation="portrait"            android:theme="@style/SplashTheme">            <intent-filter>                <action android:name="android.intent.action.MAIN"/>                <category android:name="android.intent.category.LAUNCHER"/>            </intent-filter>        </activity>
0 0
原创粉丝点击