summaryrefslogtreecommitdiff
path: root/res/drawable
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2013-07-19 09:22:03 -0700
committerYorke Lee <yorkelee@google.com>2013-07-22 19:36:56 -0700
commitd99993213962df64c9d76005df86c2fb83fca074 (patch)
treef8c1d5a39e4d64968e63026227e4a9a1be2a3871 /res/drawable
parent7025bfa554aabaf1824c208481eea4963bc4c425 (diff)
Style and layout changes to match redlines
* Swapped out some icons with newly added assets. * Changed search view into edit text with accompanying close button so that it can be more easily styled. * Changed various background colors. * Tweaked padding values to match redlines * Removed margins from PhoneFavoriteRegularRowView and PhoneFavoriteTileView and instead use a standardized set of margins for all rows in PhoneFavoritesTileAdapter * Added bottom_border_background drawable to create a bordered background. * Remove PhoneFavoritesTileAdapter.ViewTypes.STARRED/STARRED_PHONE since they are no longer relevant Change-Id: I65dfd5adf6cfbcb2c9d283aef2bd10e5d2a82dc7
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/bottom_border_background.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/res/drawable/bottom_border_background.xml b/res/drawable/bottom_border_background.xml
new file mode 100644
index 000000000..9a35e8a4d
--- /dev/null
+++ b/res/drawable/bottom_border_background.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!-- Copyright (C) 2013 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.
+-->
+<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
+
+<item>
+ <shape android:shape="rectangle" >
+ <solid android:color="@color/favorite_contacts_separator_color" />
+ <padding android:bottom="1dp" />
+ </shape>
+</item>
+<item>
+ <shape android:shape="rectangle" >
+ <solid android:color="@color/background_dial_holo_light" />
+ </shape>
+</item>
+</layer-list> \ No newline at end of file