DEV Community

Discussion on: Adding Splash Screen to Trusted Web Activity with Android’s FileProvider

Collapse
 
jacobdb profile image
Jacob Bearce

How would I change the background color for the splash screen?

Collapse
 
1998chun profile image
1998chun

Do anyone knows how?

Collapse
 
masoudmsk profile image
Masoud Salehi

Add this to the manifest after SPLASH_IMAGE_DRAWABLE:

<meta-data
    android:name="android.support.customtabs.trusted.SPLASH_SCREEN_BACKGROUND_COLOR"
    android:resource="@color/backgroundColor" />
Enter fullscreen mode Exit fullscreen mode