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

Commit e57f7cbc authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Android (Google) Code Review
Browse files

Merge "Make fallback home a bit more graceful." into nyc-dev

parents 1a157e69 e555a6f6
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2258,7 +2258,7 @@
        <!-- Triggered when user-selected home app isn't encryption aware -->
        <activity android:name=".FallbackHome"
                  android:excludeFromRecents="true"
                  android:theme="@android:style/Theme.Translucent.NoTitleBar">
                  android:theme="@style/FallbackHome">
            <intent-filter android:priority="-1000">
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.HOME" />
+6 −0
Original line number Diff line number Diff line
@@ -298,4 +298,10 @@
        <item name="suwMarginSides">@dimen/suw_layout_margin_sides</item>
    </style>

    <style name="FallbackHome" parent="@android:style/Theme.Material.Wallpaper.NoTitleBar">
        <item name="android:windowTranslucentStatus">true</item>
        <item name="android:windowTranslucentNavigation">true</item>
        <item name="android:windowAnimationStyle">@null</item>
    </style>

</resources>