Project

General

Profile

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

examples / src / main / res / values / styles.xml @ 77a500b3

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
    -->
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
    <style name="CustomActivityThemeNoActionBar" parent="@style/Theme.AppCompat.NoActionBar">
28
        <item name="android:windowNoTitle">true</item>
29
        <item name="android:windowActionBar">false</item>
30
        <item name="android:windowFullscreen">true</item>
31
        <item name="android:windowContentOverlay">@null</item>
32
    </style>
33

    
34
</resources>
(3-3/3)