diff --git a/packages/SystemUI/res/layout-land/global_actions_column.xml b/packages/SystemUI/res/layout-land/global_actions_column.xml index 98cb0d0d4c232..bd1acfc56ca69 100644 --- a/packages/SystemUI/res/layout-land/global_actions_column.xml +++ b/packages/SystemUI/res/layout-land/global_actions_column.xml @@ -22,7 +22,7 @@ android:layout_height="match_parent" android:orientation="horizontal" android:clipToPadding="false" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" android:gravity="center_horizontal | top" android:clipChildren="false" > diff --git a/packages/SystemUI/res/layout-land/global_actions_column_seascape.xml b/packages/SystemUI/res/layout-land/global_actions_column_seascape.xml index 5e7604c317312..412beb789deb2 100644 --- a/packages/SystemUI/res/layout-land/global_actions_column_seascape.xml +++ b/packages/SystemUI/res/layout-land/global_actions_column_seascape.xml @@ -22,7 +22,7 @@ android:layout_height="match_parent" android:orientation="horizontal" android:clipToPadding="false" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" android:gravity="center_horizontal | bottom" android:clipChildren="false" > diff --git a/packages/SystemUI/res/layout-land/global_actions_grid.xml b/packages/SystemUI/res/layout-land/global_actions_grid.xml index 6a1081239302e..da6235ce06822 100644 --- a/packages/SystemUI/res/layout-land/global_actions_grid.xml +++ b/packages/SystemUI/res/layout-land/global_actions_grid.xml @@ -5,7 +5,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" android:gravity="right | center_vertical" android:clipChildren="false" android:clipToPadding="false" diff --git a/packages/SystemUI/res/layout-land/global_actions_grid_seascape.xml b/packages/SystemUI/res/layout-land/global_actions_grid_seascape.xml index 79c51d9576da7..e52ad2acadc0b 100644 --- a/packages/SystemUI/res/layout-land/global_actions_grid_seascape.xml +++ b/packages/SystemUI/res/layout-land/global_actions_grid_seascape.xml @@ -5,7 +5,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="horizontal" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" android:gravity="left | center_vertical" android:clipChildren="false" android:clipToPadding="false" diff --git a/packages/SystemUI/res/layout/global_actions_column.xml b/packages/SystemUI/res/layout/global_actions_column.xml index b58146b6ce418..0f958a60e8dd0 100644 --- a/packages/SystemUI/res/layout/global_actions_column.xml +++ b/packages/SystemUI/res/layout/global_actions_column.xml @@ -22,7 +22,7 @@ android:layout_height="match_parent" android:orientation="vertical" android:clipToPadding="false" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" android:gravity="center_vertical | right" android:clipChildren="false" > diff --git a/packages/SystemUI/res/layout/global_actions_grid.xml b/packages/SystemUI/res/layout/global_actions_grid.xml index 456553d404dc1..8c621b92a513f 100644 --- a/packages/SystemUI/res/layout/global_actions_grid.xml +++ b/packages/SystemUI/res/layout/global_actions_grid.xml @@ -23,7 +23,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" diff --git a/packages/SystemUI/res/layout/global_actions_view.xml b/packages/SystemUI/res/layout/global_actions_view.xml index 454707bc44e2d..6773c49119676 100644 --- a/packages/SystemUI/res/layout/global_actions_view.xml +++ b/packages/SystemUI/res/layout/global_actions_view.xml @@ -19,7 +19,7 @@ android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" - android:theme="@style/qs_theme" + android:theme="@style/Theme.SystemUI.QuickSettings" android:clipChildren="false" android:clipToPadding="false" android:layout_marginStart="@dimen/global_actions_side_margin" diff --git a/packages/SystemUI/res/layout/status_bar_expanded_plugin_frame.xml b/packages/SystemUI/res/layout/status_bar_expanded_plugin_frame.xml index 6f9d7457e2451..65f55d0d59030 100644 --- a/packages/SystemUI/res/layout/status_bar_expanded_plugin_frame.xml +++ b/packages/SystemUI/res/layout/status_bar_expanded_plugin_frame.xml @@ -18,7 +18,7 @@ @null - diff --git a/packages/SystemUI/res/values/styles.xml b/packages/SystemUI/res/values/styles.xml index 0620a5b7e1623..e6fc332fff8f9 100644 --- a/packages/SystemUI/res/values/styles.xml +++ b/packages/SystemUI/res/values/styles.xml @@ -375,7 +375,7 @@ ?android:attr/textColorSecondary - - - diff --git a/packages/SystemUI/src/com/android/systemui/qs/QSFragment.java b/packages/SystemUI/src/com/android/systemui/qs/QSFragment.java index 94b99c3d9f2ac..cb58eff650c13 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/QSFragment.java +++ b/packages/SystemUI/src/com/android/systemui/qs/QSFragment.java @@ -132,7 +132,8 @@ public class QSFragment extends LifecycleFragment implements QS, CommandQueue.Ca public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) { inflater = mInjectionInflater.injectable( - inflater.cloneInContext(new ContextThemeWrapper(getContext(), R.style.qs_theme))); + inflater.cloneInContext(new ContextThemeWrapper(getContext(), + R.style.Theme_SystemUI_QuickSettings))); return inflater.inflate(R.layout.qs_panel, container, false); } diff --git a/packages/SystemUI/src/com/android/systemui/qs/customize/QSCustomizer.java b/packages/SystemUI/src/com/android/systemui/qs/customize/QSCustomizer.java index dce081f21581a..6f789d3c85412 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/customize/QSCustomizer.java +++ b/packages/SystemUI/src/com/android/systemui/qs/customize/QSCustomizer.java @@ -63,7 +63,7 @@ public class QSCustomizer extends LinearLayout { private boolean mIsShowingNavBackdrop; public QSCustomizer(Context context, AttributeSet attrs) { - super(new ContextThemeWrapper(context, R.style.edit_theme), attrs); + super(new ContextThemeWrapper(context, R.style.Theme_SystemUI_QuickSettings_Edit), attrs); LayoutInflater.from(getContext()).inflate(R.layout.qs_customize_panel_content, this); mClipper = new QSDetailClipper(findViewById(R.id.customize_container));