White screen before splashscreen

前端 未结 3 525
北恋
北恋 2021-01-14 03:42

I have an issue with my SplashScreenActivity, when I start my application on my phone it shows a white screen for about 0,5 seconds. The MainActitivy

3条回答
  •  我在风中等你
    2021-01-14 04:39

    You need to run this two actions in an AsyncTask:

    setContentView(R.layout.splashscreen);
    randomSplash();
    

    put the setContentView in the doInBackground-method and in the postExecute method you run randomSplash.

提交回复
热议问题