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

Commit 2934c460 authored by Charlie Anderson's avatar Charlie Anderson
Browse files

Fix status bar flicker on adding widgets requiring configuration.

- Changes ProxyActivityStarter theme to draw transparent navigation and status bar

Test: locally
Flag: N/A
Bug: 202485497

Change-Id: I88d14099ec9b1f433fbcdc9184fe5af557bc180b
parent 42a06b04
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -95,10 +95,11 @@
        </provider>

        <activity android:name="com.android.launcher3.proxy.ProxyActivityStarter"
             android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen"
            android:theme="@style/ProxyActivityStarterTheme"
            android:launchMode="singleTask"
            android:clearTaskOnLaunch="true"
             android:exported="false"/>
            android:exported="false"
            />

        <activity android:name="com.android.quickstep.interaction.GestureSandboxActivity"
            android:autoRemoveFromRecents="true"
+6 −0
Original line number Diff line number Diff line
@@ -409,6 +409,12 @@
        <item name="android:windowTranslucentStatus">true</item>
    </style>

    <style name="ProxyActivityStarterTheme" parent="@android:style/Theme.Translucent.NoTitleBar">
        <item name="android:navigationBarColor">@android:color/transparent</item>
        <item name="android:statusBarColor">@android:color/transparent</item>
        <item name="android:windowDrawsSystemBarBackgrounds">true</item>
    </style>

    <style name="FolderStyleDefault">
        <item name="folderTopPadding">24dp</item>
        <item name="folderCellHeight">94dp</item>