Black screen before Splash screen appear in android

前端 未结 7 1507
遇见更好的自我
遇见更好的自我 2020-11-30 20:22

We know that when the app do some long process like downloading some information from internet it could show a splash screen before loading the application and when the app

相关标签:
7条回答
  • 2020-11-30 21:13

    This initial screen that you see is called the "Preview" screen. You can disable this completely by declaring this in your theme:

    android:windowDisablePreview
    
    <style name="Theme.MyTheme" parent="android:style/Theme.Holo">
        <!-- This disables the black preview screen -->
        <item name="android:windowDisablePreview">true</item>
    </style>
    

    An explanation of how to handle this screen is posted here: http://cyrilmottier.com/2013/01/23/android-app-launching-made-gorgeous/

    0 讨论(0)
提交回复
热议问题