Android应用启动白屏问题

近期在做一个小的Android应用,发现启动第一个Activity时,总会出现一个白屏,即“闪屏”,影响了APP体验,通过在AndroidManifest.xml中为Main Activity配置专属theme可以解决这个问题。

    package="com.example.xxxxx">

        android:allowBackup="true"

        android:icon="@mipmap/ic_launcher"

        android:label="@string/app_name"

        android:roundIcon="@mipmap/ic_launcher_round"

        android:supportsRtl="true"

        android:theme="@style/Theme.AppCompat.Light.NoActionBar" >>

       

           

               

               

           

       

   

styleSplashImage的配置如下

亲证有效,参考:

https://blog.csdn.net/qq_29266921/article/details/54342977

你可能感兴趣的:(Android应用启动白屏问题)