diff options
| -rw-r--r-- | api/current.xml | 22 | ||||
| -rw-r--r-- | core/res/res/values/public.xml | 3 | ||||
| -rw-r--r-- | core/res/res/values/themes.xml | 15 |
3 files changed, 39 insertions, 1 deletions
diff --git a/api/current.xml b/api/current.xml index c649e1565098..7688c08bb5ff 100644 --- a/api/current.xml +++ b/api/current.xml @@ -14722,6 +14722,28 @@ visibility="public" > </field> +<field name="Theme_Holo_Wallpaper" + type="int" + transient="false" + volatile="false" + value="16973956" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> +<field name="Theme_Holo_Wallpaper_NoTitleBar" + type="int" + transient="false" + volatile="false" + value="16973957" + static="true" + final="true" + deprecated="not deprecated" + visibility="public" +> +</field> <field name="Theme_InputMethod" type="int" transient="false" diff --git a/core/res/res/values/public.xml b/core/res/res/values/public.xml index ad4e7a289bcd..aedba178e873 100644 --- a/core/res/res/values/public.xml +++ b/core/res/res/values/public.xml @@ -1447,4 +1447,7 @@ <public type="style" name="Theme.Holo.Light.DialogWhenLarge" /> <public type="string" name="selectTextMode" /> + + <public type="style" name="Theme.Holo.Wallpaper" /> + <public type="style" name="Theme.Holo.Wallpaper.NoTitleBar" /> </resources> diff --git a/core/res/res/values/themes.xml b/core/res/res/values/themes.xml index dd7c8e4828fd..a409c2480630 100644 --- a/core/res/res/values/themes.xml +++ b/core/res/res/values/themes.xml @@ -367,7 +367,7 @@ </style> <!-- Default theme for windows that want to have the user's selected - wallpaper appear behind them. --> + wallpaper appear behind them. --> <style name="Theme.Wallpaper"> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:colorBackgroundCacheHint">@null</item> @@ -1238,4 +1238,17 @@ <item name="windowContentOverlay">@null</item> </style> + <!-- Default holographic (dark) for windows that want to have the user's selected + wallpaper appear behind them. --> + <style name="Theme.Holo.Wallpaper"> + <item name="android:windowBackground">@android:color/transparent</item> + <item name="android:colorBackgroundCacheHint">@null</item> + <item name="android:windowShowWallpaper">true</item> + </style> + + <!-- Variant of the holographic (dark) theme with no title bar --> + <style name="Theme.Holo.Wallpaper.NoTitleBar"> + <item name="android:windowNoTitle">true</item> + </style> + </resources> |