summaryrefslogtreecommitdiff
path: root/res/drawable
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2014-02-19 15:58:26 -0800
committerTyler Gunn <tgunn@google.com>2014-02-19 15:58:26 -0800
commit9a06657538802e0100dc65c6ae0713c996298e1b (patch)
treec0974fac1dd34446df5a62074899ed8f054ab59a /res/drawable
parent7738b8492d634beaa15abd2a32f08d371e84f400 (diff)
Adding "Speed Dial" title to dialer favorites list and moving "All Contacts" affordance.
Bug: 13080167 Change-Id: Id825ef4bfc9de5340d40cae8176bdc13fcfb3ccd
Diffstat (limited to 'res/drawable')
-rw-r--r--res/drawable/background_favorites_menu.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/res/drawable/background_favorites_menu.xml b/res/drawable/background_favorites_menu.xml
new file mode 100644
index 000000000..fc2669b10
--- /dev/null
+++ b/res/drawable/background_favorites_menu.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2014 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
+ -->
+
+<selector xmlns:android="http://schemas.android.com/apk/res/android">
+ <item android:state_pressed="false">
+ <shape android:shape="rectangle" >
+ <solid android:color="@color/background_dialer_list_items" />
+ </shape>
+ </item>
+ <item android:state_pressed="true">
+ <shape android:shape="rectangle" >
+ <solid android:color="@color/favorites_menu_pressed_color" />
+ </shape>
+ </item>
+</selector> \ No newline at end of file