Merge "Support vendor modes in color mode preference" into sc-dev am: 10da1de13e

Original change: https://googleplex-android-review.googlesource.com/c/platform/packages/apps/Settings/+/14128858

Change-Id: I16cea24dc84c4b9fab588ef653765bf160942b15
This commit is contained in:
Christine Franks
2021-04-23 06:45:18 +00:00
committed by Automerger Merge Worker
7 changed files with 409 additions and 343 deletions

View File

@@ -530,4 +530,24 @@
<!-- Whether to show Smart Storage toggle -->
<bool name="config_show_smart_storage_toggle">true</bool>
<!-- Display settings screen, Color mode options. Must be the same length and order as
config_color_mode_options_values below. Only the values that also appear in
frameworks/base/core/res/res/values/config.xml's config_availableColorModes are shown. -->
<string-array name="config_color_mode_options_strings" translatable="false">
<item>@string/color_mode_option_natural</item>
<item>@string/color_mode_option_boosted</item>
<item>@string/color_mode_option_saturated</item>
<item>@string/color_mode_option_automatic</item>
</string-array>
<!-- Display settings screen, Color mode options. Must be the same length and order as
config_color_mode_options_strings above. Only the values that also appear in
frameworks/base/core/res/res/values/config.xml's config_availableColorModes are shown. -->
<integer-array name="config_color_mode_options_values" translatable="false">
<item>0</item>
<item>1</item>
<item>2</item>
<item>3</item>
</integer-array>
</resources>