user291701
user291701

Reputation: 39681

Set activity background in theme using a style?

I want to use a background drawable for all my activities. How can I do this with a style?

// styles.xml
<style name="MyTheme" parent="Theme.Sherlock.Light.DarkActionBar.ForceOverflow">
    <item name="android:background">@drawable/my_background</item>  
</style>

that sets the background for all widgets it seems. I just want it to work for activities.

Thanks

Upvotes: 44

Views: 22786

Answers (1)

biegleux
biegleux

Reputation: 13247

Use

<item name="android:windowBackground">@drawable/my_background</item>

Upvotes: 120

Related Questions