We we have a mono for android application which is currently displaying a nice splash screen with a logo PNG centred on the screen.
However, the screen background is black, meaning that the logo - which has a transparent background - doesn't show up so well.
My theme is currently set up as follows:
<resources>
<style name="Theme.Splash" parent="android:Theme">
<item name="android:windowBackground">@drawable/splash</item>
<item name="android:windowNoTitle">true</item>
</style>
</resources>
Where 'splash.png' is my splash logo image.
Setting the background using
<item name="android:background">@color/white</item>
overrides the splash image background.
Is it possible to define the theme to have a white background, with the splash.png on top of it?
The alternative is for us to amend slpash.png to have a white background, rather than transparent, but I'ld like to avoid this if possible.