Update lockscreen shortcuts color tokens
Use the proper colors for the lockscreen shortcuts Fixes: 287072561 Test: manual - toggle shortcut on and off in light mode, verify correct colors Test: manual - toggle shortcut on and off in dark mode, verify correct colors Change-Id: I17a5444d6c21b9a109b6c9a308d367a4503f5fdc
This commit is contained in:
@@ -20,7 +20,7 @@
|
|||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
|
||||||
android:shape="rectangle">
|
android:shape="rectangle">
|
||||||
<solid android:color="?androidprv:attr/colorSurface"/>
|
<solid android:color="?androidprv:attr/materialColorSurfaceContainerHigh"/>
|
||||||
<size
|
<size
|
||||||
android:width="@dimen/keyguard_affordance_fixed_width"
|
android:width="@dimen/keyguard_affordance_fixed_width"
|
||||||
android:height="@dimen/keyguard_affordance_fixed_height"/>
|
android:height="@dimen/keyguard_affordance_fixed_height"/>
|
||||||
|
|||||||
@@ -343,9 +343,9 @@ object KeyguardBottomAreaViewBinder {
|
|||||||
Utils.getColorAttrDefaultColor(
|
Utils.getColorAttrDefaultColor(
|
||||||
view.context,
|
view.context,
|
||||||
if (viewModel.isActivated) {
|
if (viewModel.isActivated) {
|
||||||
com.android.internal.R.attr.textColorPrimaryInverse
|
com.android.internal.R.attr.materialColorOnPrimaryFixed
|
||||||
} else {
|
} else {
|
||||||
com.android.internal.R.attr.textColorPrimary
|
com.android.internal.R.attr.materialColorOnSurface
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
@@ -355,9 +355,9 @@ object KeyguardBottomAreaViewBinder {
|
|||||||
Utils.getColorAttr(
|
Utils.getColorAttr(
|
||||||
view.context,
|
view.context,
|
||||||
if (viewModel.isActivated) {
|
if (viewModel.isActivated) {
|
||||||
com.android.internal.R.attr.colorAccentPrimary
|
com.android.internal.R.attr.materialColorPrimaryFixed
|
||||||
} else {
|
} else {
|
||||||
com.android.internal.R.attr.colorSurface
|
com.android.internal.R.attr.materialColorSurfaceContainerHigh
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user