diff options
author | Jin Cao <jinyan@google.com> | 2014-07-29 16:23:03 -0700 |
---|---|---|
committer | Jin Cao <jinyan@google.com> | 2014-07-29 16:23:03 -0700 |
commit | 58d541de27090b4bd55746368b3b3b1486a7c094 (patch) | |
tree | 557141a6770ff78f34539fb65fff2e80fc5bc8e9 /res | |
parent | 4ddcdaed9ef5ea83910a0513e87538130270e2e4 (diff) | |
download | android_frameworks_opt_chips-58d541de27090b4bd55746368b3b3b1486a7c094.tar.gz android_frameworks_opt_chips-58d541de27090b4bd55746368b3b3b1486a7c094.tar.bz2 android_frameworks_opt_chips-58d541de27090b4bd55746368b3b3b1486a7c094.zip |
[Quantum chips] restyle recipient chips to quantum
Restyle recipient chips to quantum redlines, also
remove padding style from non-autocomplete dropdowns.
b/15934812
Change-Id: I28eef0f4b9d622f81782d12f279e78af10c14458
Diffstat (limited to 'res')
-rw-r--r-- | res/drawable-hdpi/chip_background.9.png | bin | 679 -> 679 bytes | |||
-rw-r--r-- | res/drawable-hdpi/chip_background_selected.9.png | bin | 733 -> 729 bytes | |||
-rw-r--r-- | res/drawable-mdpi/chip_background.9.png | bin | 415 -> 415 bytes | |||
-rw-r--r-- | res/drawable-mdpi/chip_background_selected.9.png | bin | 473 -> 465 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/chip_background.9.png | bin | 887 -> 892 bytes | |||
-rw-r--r-- | res/drawable-xhdpi/chip_background_selected.9.png | bin | 974 -> 966 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/chip_background.9.png | bin | 1632 -> 1663 bytes | |||
-rw-r--r-- | res/drawable-xxhdpi/chip_background_selected.9.png | bin | 1773 -> 1791 bytes | |||
-rw-r--r-- | res/layout/chips_autocomplete_recipient_dropdown_item.xml | 2 | ||||
-rw-r--r-- | res/layout/chips_recipient_dropdown_item.xml | 3 | ||||
-rw-r--r-- | res/values-sw600dp-land/dimen.xml | 21 | ||||
-rw-r--r-- | res/values-v17/styles.xml | 2 | ||||
-rw-r--r-- | res/values/dimen.xml | 11 | ||||
-rw-r--r-- | res/values/styles.xml | 2 |
14 files changed, 13 insertions, 28 deletions
diff --git a/res/drawable-hdpi/chip_background.9.png b/res/drawable-hdpi/chip_background.9.png Binary files differindex 3d6d27d..4125139 100644 --- a/res/drawable-hdpi/chip_background.9.png +++ b/res/drawable-hdpi/chip_background.9.png diff --git a/res/drawable-hdpi/chip_background_selected.9.png b/res/drawable-hdpi/chip_background_selected.9.png Binary files differindex 1d9b5ee..fe3856d 100644 --- a/res/drawable-hdpi/chip_background_selected.9.png +++ b/res/drawable-hdpi/chip_background_selected.9.png diff --git a/res/drawable-mdpi/chip_background.9.png b/res/drawable-mdpi/chip_background.9.png Binary files differindex 116f731..5ee5586 100644 --- a/res/drawable-mdpi/chip_background.9.png +++ b/res/drawable-mdpi/chip_background.9.png diff --git a/res/drawable-mdpi/chip_background_selected.9.png b/res/drawable-mdpi/chip_background_selected.9.png Binary files differindex ceda86e..f9d65b5 100644 --- a/res/drawable-mdpi/chip_background_selected.9.png +++ b/res/drawable-mdpi/chip_background_selected.9.png diff --git a/res/drawable-xhdpi/chip_background.9.png b/res/drawable-xhdpi/chip_background.9.png Binary files differindex 4fe3fe4..f721c5f 100644 --- a/res/drawable-xhdpi/chip_background.9.png +++ b/res/drawable-xhdpi/chip_background.9.png diff --git a/res/drawable-xhdpi/chip_background_selected.9.png b/res/drawable-xhdpi/chip_background_selected.9.png Binary files differindex 37400f3..df21950 100644 --- a/res/drawable-xhdpi/chip_background_selected.9.png +++ b/res/drawable-xhdpi/chip_background_selected.9.png diff --git a/res/drawable-xxhdpi/chip_background.9.png b/res/drawable-xxhdpi/chip_background.9.png Binary files differindex d8fff51..52ca406 100644 --- a/res/drawable-xxhdpi/chip_background.9.png +++ b/res/drawable-xxhdpi/chip_background.9.png diff --git a/res/drawable-xxhdpi/chip_background_selected.9.png b/res/drawable-xxhdpi/chip_background_selected.9.png Binary files differindex 4e0f00e..c38fd54 100644 --- a/res/drawable-xxhdpi/chip_background_selected.9.png +++ b/res/drawable-xxhdpi/chip_background_selected.9.png diff --git a/res/layout/chips_autocomplete_recipient_dropdown_item.xml b/res/layout/chips_autocomplete_recipient_dropdown_item.xml index 59c4155..3f35e86 100644 --- a/res/layout/chips_autocomplete_recipient_dropdown_item.xml +++ b/res/layout/chips_autocomplete_recipient_dropdown_item.xml @@ -18,7 +18,7 @@ android:layout_width="match_parent" android:layout_height="match_parent" android:background="@drawable/chips_dropdown_background" - style="@style/ChipWrapperStyle"> + style="@style/ChipAutocompleteWrapperStyle"> <com.android.ex.chips.CircularImageView style="@style/ChipEndIconStyle" /> diff --git a/res/layout/chips_recipient_dropdown_item.xml b/res/layout/chips_recipient_dropdown_item.xml index 697d71f..343bf61 100644 --- a/res/layout/chips_recipient_dropdown_item.xml +++ b/res/layout/chips_recipient_dropdown_item.xml @@ -17,8 +17,7 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" - android:background="@drawable/chips_dropdown_background" - style="@style/ChipWrapperStyle"> + android:background="@drawable/chips_dropdown_background"> <com.android.ex.chips.CircularImageView style="@style/ChipStartIconStyle" /> diff --git a/res/values-sw600dp-land/dimen.xml b/res/values-sw600dp-land/dimen.xml deleted file mode 100644 index dc3aadf..0000000 --- a/res/values-sw600dp-land/dimen.xml +++ /dev/null @@ -1,21 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Copyright (C) 2011 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> - <dimen name="chip_padding">8dip</dimen> - <dimen name="chip_height">32dip</dimen> - <dimen name="chip_text_size">14sp</dimen> -</resources>
\ No newline at end of file diff --git a/res/values-v17/styles.xml b/res/values-v17/styles.xml index 0842ba7..7674bad 100644 --- a/res/values-v17/styles.xml +++ b/res/values-v17/styles.xml @@ -14,7 +14,7 @@ limitations under the License. --> <resources> - <style name="ChipWrapperStyle"> + <style name="ChipAutocompleteWrapperStyle"> <item name="android:paddingStart">@dimen/chip_wrapper_start_padding</item> <item name="android:paddingTop">@dimen/chip_wrapper_top_padding</item> <item name="android:paddingEnd">@dimen/chip_wrapper_end_padding</item> diff --git a/res/values/dimen.xml b/res/values/dimen.xml index 645b3fc..636fd26 100644 --- a/res/values/dimen.xml +++ b/res/values/dimen.xml @@ -15,11 +15,18 @@ --> <resources> - <dimen name="chip_padding">3dip</dimen> - <dimen name="chip_height">36dip</dimen> + <!-- override default padding values, -1dp if it's not set to override --> + <dimen name="chip_padding_start">-1dp</dimen> + <dimen name="chip_padding_end">12dp</dimen> + + <!-- chip --> + <dimen name="chip_padding">8dp</dimen> + <dimen name="chip_height">32dp</dimen> <dimen name="chip_text_size">14sp</dimen> <dimen name="line_spacing_extra">4dip</dimen> <integer name="chips_max_lines">-1</integer> + + <!-- dropdown --> <dimen name="chip_icon_margin_end">16dp</dimen> <dimen name="chip_wrapper_start_padding">16dp</dimen> <dimen name="chip_wrapper_top_padding">16dp</dimen> diff --git a/res/values/styles.xml b/res/values/styles.xml index 9e7b0d2..a2b8585 100644 --- a/res/values/styles.xml +++ b/res/values/styles.xml @@ -32,7 +32,7 @@ <item name="android:popupBackground">@drawable/chips_popup_background</item> </style> - <style name="ChipWrapperStyle"> + <style name="ChipAutocompleteWrapperStyle"> <item name="android:paddingLeft">@dimen/chip_wrapper_start_padding</item> <item name="android:paddingTop">@dimen/chip_wrapper_top_padding</item> <item name="android:paddingRight">@dimen/chip_wrapper_end_padding</item> |