Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 50ba9437 authored by Tom Taylor's avatar Tom Taylor Committed by Android (Google) Code Review
Browse files

Merge "Add a public Theme.Holo.Wallpaper.NoTitleBar"

parents 81c4cea9 659ee126
Loading
Loading
Loading
Loading
+22 −0
Original line number Diff line number Diff line
@@ -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"
+3 −0
Original line number Diff line number Diff line
@@ -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>
+14 −1
Original line number Diff line number Diff line
@@ -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>