I am working on a project and set the background of the application to white by doing the following:
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
<item name="android:actionBarStyle">@style/MyActionBar</item>
<item name="android:actionBarSize">140dp</item>
<item name="android:background">#ffffff</item>
</style>
This works a charm however the problem is that the toast messages are now being displayed with a white background. The strange thing is that I integrated a splash screen into the project and when the user logs in the toast message is displayed normally.
It is really strange and would appreciate any help on the issue.
EDIT: ADDED SCREENSHOT SHOWING ISSUE. The screenshot is taken just as the initial toast (with unwanted effect) is fading out and the new one (with default) is fading in.