GDPR - Change Bottom Navigation Bar Color - UserMessagingPlatform (UMP)

161 Views Asked by At

I am using Admobs UMP to generate a GDPR EU Consent message: https://developers.google.com/interactive-media-ads/ump/android/quick-start

Here is the dialog in my app:enter image description here

I want to change the color of Bottom Navigation Bar (shown in the photo with blue arrows) to gray color to match it with the app's styling. It is white by default and it ruins the app styling. How can I make it gray?

1

There are 1 best solutions below

2
On

That does not seem to be supported in any way by the UMP library alone.

So you might have to change the color first, then call your UMP screen, to see if that would give you the expected effect.

Something like this answer, but applied to the all bar:

val bottomNavigationView = findViewById<BottomNavigationView>(R.id.bottomNavigationView)

// Get the color resource ID for the desired color.
val colorResId = R.color.gray
// Set the bottom navigation bar color.
bottomNavigationView.setBackgroundColor(ContextCompat.getColor(this, colorResId))

// Then call your UMP dialog