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

Commit 659ee126 authored by Tom Taylor's avatar Tom Taylor
Browse files

Add a public Theme.Holo.Wallpaper.NoTitleBar

This is the Holo version of the existing public Theme.Wallpaper.NoTitleBar.
It's needed for the video chat incoming call notification that comes up
when the device is asleep or locked. Bug 3202912

Change-Id: Idbef01541c4a7e5a6bbb678c7dedd6c95de1909d
parent 1bf397ff
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>