diff options
author | Sanket Padawe <sanketpadawe@google.com> | 2014-10-28 14:01:50 -0700 |
---|---|---|
committer | Sanket Padawe <sanketpadawe@google.com> | 2014-10-28 14:01:50 -0700 |
commit | abc505aac3b830a551284f0326bba987abfb2395 (patch) | |
tree | d5f7c540a964042ef0c2ed58717df2dc3e57d209 /res/values/arrays.xml | |
parent | 4aab7ecb56e9af4600b126c67d7efe0b7e1f6ee1 (diff) | |
download | packages_apps_Settings-abc505aac3b830a551284f0326bba987abfb2395.zip packages_apps_Settings-abc505aac3b830a551284f0326bba987abfb2395.tar.gz packages_apps_Settings-abc505aac3b830a551284f0326bba987abfb2395.tar.bz2 |
Add sim color selection in settings
Adding a dropdown list to select sim color from sim settings UI.
Change-Id: I26da0a79f5b1edf829fc5d46af2c0c23962226b8
Diffstat (limited to 'res/values/arrays.xml')
-rw-r--r-- | res/values/arrays.xml | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/res/values/arrays.xml b/res/values/arrays.xml index 580143e..e613617 100644 --- a/res/values/arrays.xml +++ b/res/values/arrays.xml @@ -1260,21 +1260,23 @@ <item>Cached (empty)</item> </string-array> - <!-- Multi-SIM titles for captioning color preference. --> - <string-array name="sim_info_picker_color_titles" translatable="false" > - <item>@string/color_blue</item> - <item>@string/color_green</item> - <item>@string/color_purple</item> - <item>@string/color_red</item> - <item>@string/color_orange</item> + <!-- Array storing rgb values of sim colors for multi-sim --> + <array name="sim_colors"> + <item>@color/Teal_700</item> + <item>@color/Blue_700</item> + <item>@color/Indigo_700</item> + <item>@color/Purple_700</item> + <item>@color/Pink_700</item> + <item>@color/Red_700</item> + </array> + + <!-- Array of titles for sim color for multi-sim --> + <string-array name="color_picker"> + <item>Teal</item> + <item>Blue</item> + <item>Indigo</item> + <item>Purple</item> + <item>Pink</item> + <item>Red</item> </string-array> - - <!-- Multi-SIM colors. --> - <integer-array name="sim_info_picker_color_values" translatable="false" > - <item>@color/blue_500</item> - <item>@color/green_500</item> - <item>@color/purple_500</item> - <item>@color/red_500</item> - <item>@color/orange_500</item> - </integer-array> </resources> |