Make ControlsActivity translucent
This has the (for now) desirable side-effect of preventing
animations when opening/closing. Being a frame around TaskView
the normal close animations don't work for this Activity.
Once the Activity isn't a TaskView (b/293338460) this can be
reverted.
Bug: 312649396
Bug: 293338460
Change-Id: Iad2efcb727b97c923a4608e5fae9ad722cc412f8
Test: Manual - open/close over home and lockscreen
diff --git a/packages/SystemUI/res/values/styles.xml b/packages/SystemUI/res/values/styles.xml
index 3f026a4..7d7c050 100644
--- a/packages/SystemUI/res/values/styles.xml
+++ b/packages/SystemUI/res/values/styles.xml
@@ -921,7 +921,7 @@
<style name="Theme.ControlsActivity" parent="@android:style/Theme.DeviceDefault.NoActionBar">
<item name="android:windowActivityTransitions">true</item>
<item name="android:windowContentTransitions">false</item>
- <item name="android:windowIsTranslucent">false</item>
+ <item name="android:windowIsTranslucent">true</item>
<item name="android:windowBackground">@android:color/black</item>
<item name="android:windowAnimationStyle">@null</item>
<item name="android:statusBarColor">@android:color/black</item>