Project

General

Profile

Download (1.2 KB) Statistics
| Branch: | Revision:

examples / src / main / res / values / styles.xml @ 427ab7bf

1
<?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
    <style name="WallpaperSettingsLight" parent="@android:style/Theme.Light">
20
        <item name="android:windowBackground">@android:drawable/screen_background_light_transparent</item>
21
        <item name="android:colorBackgroundCacheHint">@null</item>
22
        <item name="android:windowIsTranslucent">true</item>
23
        <item name="android:windowAnimationStyle">@android:style/Animation.Translucent</item>
24
    </style>
25

    
26
</resources>
(2-2/2)