How to avoid black screen in android while my app is loading?

后端 未结 4 877
无人共我
无人共我 2020-12-15 12:01

How to avoid black screen in android while my app is loading ? I have removed all things from onCreate to AsyncTask but still I have black screen at the beginning. My defa

4条回答
  •  春和景丽
    2020-12-15 12:04

    i'm not sure.

    but, Try this in Manifest inside your activity

    android:theme="@android:style/Theme.Translucent" 
    

    Or

    android:theme="@android:style/Theme.Light"
    

    I have seen a good solution about splash screen... hope it useful

    https://stackoverflow.com/a/8654361/762919

提交回复
热议问题