From 619e6c8c782f2d29a88b8870ec1f38095524a800 Mon Sep 17 00:00:00 2001 From: Alex Li Date: Wed, 26 Feb 2025 18:03:18 -0800 Subject: [PATCH] Uses ThemeHelper#trySetSuwTheme to apply theme for Radactioninterstitial screen. Screenshot: https://hsv.googleplex.com/6310318165721088 Bug: 399237091 Test: manual test on device. Flag: EXEMPT flag by PartnerConfigHelper.isGlifExpressiveEnabled Change-Id: I0f1d8a6ea1cbe8bce79c32b4c039656648f5a99a --- .../android/settings/notification/RedactionInterstitial.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/com/android/settings/notification/RedactionInterstitial.java b/src/com/android/settings/notification/RedactionInterstitial.java index 92c9e2e0405..043a672a08f 100644 --- a/src/com/android/settings/notification/RedactionInterstitial.java +++ b/src/com/android/settings/notification/RedactionInterstitial.java @@ -70,8 +70,7 @@ public class RedactionInterstitial extends SettingsActivity { @Override protected void onCreate(Bundle savedInstance) { - setTheme(SetupWizardUtils.getTheme(this, getIntent())); - ThemeHelper.trySetDynamicColor(this); + ThemeHelper.trySetSuwTheme(this); super.onCreate(savedInstance); findViewById(R.id.content_parent).setFitsSystemWindows(false); }