I want to set a background image for my android application. So my application already has a theme installed in my manifest file like this
<application android:theme="@android:style/Theme.NoTitleBar" />
Now it has been implemented from the themes of the android package.
Now I want to add a background image to my entire application, how can I do this.
<style name="Theme.NoTitleBar.BackgroundImage"> <item name="android:background">@drawable/bitzer_background</item> </style>
I also want Theme.NoTitleBar.
source share