Hi i want to set background image to my application which already has a theme.
<application android:theme="@android:style/Theme.NoTitleBar" />
Now i have changed the code to this
<style name="BackgroundImage" parent="@android:style/Theme.NoTitleBar">
<item name="android:background">@drawable/background</item>
</style>
the manifest file looks like this
<application android:theme="@style/BackgroundImage" />
Now the background image is set but my previous theme i.e. Theme.NoTitleBar is not working.
Ideal behavior expected is both background image and Theme.NoTitleBar should be working. What should i do?
I have changed the style as follows by doing this i am overriding the Theme.NoTitlteBar
Now manifest file looks like this.