Black screen before Splash screen appear in android

前端 未结 7 1551
遇见更好的自我
遇见更好的自我 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 20:54

    If you call some "heavy code" in onCreate the screen will appear black until it is done loading. You might consider using AsyncTask and make the onCreate handle setContentView etc, and make the AsyncTask handle "the heavy code".

提交回复
热议问题