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

Commit 34ca9ece authored by Budi Kusmiantoro's avatar Budi Kusmiantoro
Browse files

Hide Clock dream nav bar when started from the Clock app

Bug: 17367264
Change-Id: I70b4746c7b7e6e4c747668855d412136180c08d2

We still need to hide the nav bar when dream is started by the
system screensaver or via Settings > Display > Daydream. This
will be set by default in the base class later.
parent c913ae64
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -135,8 +135,10 @@
        <item name="android:statusBarColor">@color/status_bar</item>
    </style>

    <style name="ScreensaverActivityTheme"
           parent="@android:style/Theme.Material.Wallpaper.NoTitleBar" />
    <style name="ScreensaverActivityTheme" parent="@android:style/Theme.Material.NoActionBar">
        <!-- Hide navigation bar when Dream is started from within the Clock app -->
        <item name="android:windowDrawsSystemBarBackgrounds">false</item>
    </style>

    <style name="ScreensaverSettingsActivityTheme" parent="@android:style/Theme.Material" />