From 1b81edeb97f0bf391d8d8194b4493796c2acc7d2 Mon Sep 17 00:00:00 2001 From: Matt Pietal Date: Thu, 15 Jun 2023 13:46:49 +0000 Subject: [PATCH 1/2] Move keyguard root view in z-order In order for touch handling and the long press lockscreen customizable button to work correctly. Bug: 280846900 Test: atest SystemUITests Change-Id: I5976d1a7c54467d0027f565207b7e8ce4441c798 --- .../SystemUI/res/layout/super_notification_shade.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/packages/SystemUI/res/layout/super_notification_shade.xml b/packages/SystemUI/res/layout/super_notification_shade.xml index 6601e63fa034c..2fde9479d42a3 100644 --- a/packages/SystemUI/res/layout/super_notification_shade.xml +++ b/packages/SystemUI/res/layout/super_notification_shade.xml @@ -65,17 +65,17 @@ android:layout_width="match_parent" android:layout_height="match_parent" /> - - + + Date: Thu, 15 Jun 2023 13:49:31 +0000 Subject: [PATCH 2/2] Enable migrate_indication_area For Teamfood Bug: 280067944 Test: manual Change-Id: I01be5d1547ed6386fb7effdfbed26ae7e0c5a90f --- packages/SystemUI/src/com/android/systemui/flags/Flags.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt index d173fe5aef033..bccdd4eafcb36 100644 --- a/packages/SystemUI/src/com/android/systemui/flags/Flags.kt +++ b/packages/SystemUI/src/com/android/systemui/flags/Flags.kt @@ -252,7 +252,7 @@ object Flags { /** Migrate the indication area to the new keyguard root view. */ // TODO(b/280067944): Tracking bug. @JvmField - val MIGRATE_INDICATION_AREA = unreleasedFlag(236, "migrate_indication_area") + val MIGRATE_INDICATION_AREA = unreleasedFlag(236, "migrate_indication_area", teamfood = true) /** Whether to listen for fingerprint authentication over keyguard occluding activities. */ // TODO(b/283260512): Tracking bug.