| 1 |
427ab7bf
|
Leszek Koltunski
|
<?xml version="1.0" encoding="utf-8"?>
|
| 2 |
|
|
<resources xmlns:android="http://schemas.android.com/apk/res/android">
|
| 3 |
|
|
|
| 4 |
|
|
<!--
|
| 5 |
|
|
Theme for a wallpaper's setting activity that is designed to be on
|
| 6 |
|
|
top of a dark background.
|
| 7 |
|
|
-->
|
| 8 |
|
|
<style name="WallpaperSettings" parent="@android:style/Theme">
|
| 9 |
|
|
<item name="android:windowBackground">@android:drawable/screen_background_dark_transparent</item>
|
| 10 |
|
|
<item name="android:colorBackgroundCacheHint">@null</item>
|
| 11 |
|
|
<item name="android:windowIsTranslucent">true</item>
|
| 12 |
|
|
<item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
|
| 13 |
|
|
</style>
|
| 14 |
|
|
|
| 15 |
|
|
<!--
|
| 16 |
|
|
Theme for a wallpaper's setting activity that is designed to be on
|
| 17 |
|
|
top of a light background.
|
| 18 |
|
|
|
| 19 |
|
|
-->
|
| 20 |
|
|
<style name="WallpaperSettingsLight" parent="@android:style/Theme.Light">
|
| 21 |
|
|
<item name="android:windowBackground">@android:drawable/screen_background_light_transparent</item>
|
| 22 |
|
|
<item name="android:colorBackgroundCacheHint">@null</item>
|
| 23 |
|
|
<item name="android:windowIsTranslucent">true</item>
|
| 24 |
|
|
<item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
|
| 25 |
|
|
</style>
|
| 26 |
|
|
|
| 27 |
|
|
</resources>
|