fixup! Launcher3: Adapt home settings UI to Android 12 style

Change-Id: Id9aebd097a557b5269d01eef3b4ccd64962aeb28
Signed-off-by: jhonboy121 <alfredmathew05@gmail.com>
Signed-off-by: aswin7469 <aswinas@pixysos.com>
This commit is contained in:
jhonboy121 2022-11-24 17:47:52 +00:00 committed by Jake Weinstein
parent a22f6ee09a
commit df2ca1c019
3 changed files with 5 additions and 45 deletions

View File

@ -153,6 +153,9 @@ android_library {
name: "Launcher3ResLib",
srcs: [ ],
resource_dirs: ["res"],
defaults: [
"SettingsLibDefaults",
],
static_libs: [
"LauncherPluginLib",
"launcher_quickstep_log_protos_lite",

View File

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright (C) 2022 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<resources>
<style name="HomeSettings.Theme" parent="@android:style/Theme.DeviceDefault.Settings">
<item name="android:listPreferredItemPaddingEnd">16dp</item>
<item name="android:listPreferredItemPaddingStart">24dp</item>
<item name="android:navigationBarColor">@android:color/transparent</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:switchStyle">@style/HomeSettings.SwitchStyle</item>
<item name="android:textAppearanceListItem">@style/HomeSettings.PreferenceTitle</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<item name="preferenceTheme">@style/HomeSettings.PreferenceTheme</item>
<item name="android:windowAnimationStyle">@style/Animation.SharedBackground</item>
</style>
<style name="Animation.SharedBackground" parent="@android:style/Animation.Activity">
<item name="android:activityOpenEnterAnimation">@anim/shared_x_axis_activity_open_enter</item>
<item name="android:activityOpenExitAnimation">@anim/shared_x_axis_activity_open_exit</item>
<item name="android:activityCloseEnterAnimation">@anim/shared_x_axis_activity_close_enter</item>
<item name="android:activityCloseExitAnimation">@anim/shared_x_axis_activity_close_exit</item>
</style>
</resources>

View File

@ -186,14 +186,11 @@
<item name="qsbIconTintTertiary">@color/qsb_tertiary</item>
</style>
<style name="HomeSettings.Theme" parent="@android:style/Theme.DeviceDefault.Settings">
<item name="android:navigationBarColor">?android:colorPrimaryDark</item>
<item name="android:windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
<style name="HomeSettings.Theme" parent="@style/Theme.SubSettingsBase">
<item name="preferenceTheme">@style/HomeSettings.PreferenceTheme</item>
</style>
<style name="HomeSettings.PreferenceTheme" parent="@style/PreferenceThemeOverlay.v14.Material">
<style name="HomeSettings.PreferenceTheme" parent="@style/PreferenceTheme.SettingsLib">
<item name="preferenceFragmentCompatStyle">@style/HomeSettings.FragmentCompatStyle</item>
</style>