Skip to content Skip to sidebar Skip to footer

How To Remove The White Screen While My App Loads?

AndroidManifest.xml:

Solution 1:

One quick, easy way is to make your launch screen Translucent.

<activity
        android:name="com.taxeeta.BookingExperience"
        android:configChanges="keyboardHidden|orientation"
        android:label="@string/app_name"
        android:screenOrientation="portrait"
        android:theme="@android:style/Theme.Translucent.NoTitleBar"
        android:windowSoftInputMode="stateAlwaysHidden" />

Post a Comment for "How To Remove The White Screen While My App Loads?"