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