summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/speeddial/res/values
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/android/dialer/speeddial/res/values')
-rw-r--r--java/com/android/dialer/speeddial/res/values/dimens.xml15
-rw-r--r--java/com/android/dialer/speeddial/res/values/strings.xml15
-rw-r--r--java/com/android/dialer/speeddial/res/values/styles.xml27
3 files changed, 57 insertions, 0 deletions
diff --git a/java/com/android/dialer/speeddial/res/values/dimens.xml b/java/com/android/dialer/speeddial/res/values/dimens.xml
index 74b509b73..ce2de9dcc 100644
--- a/java/com/android/dialer/speeddial/res/values/dimens.xml
+++ b/java/com/android/dialer/speeddial/res/values/dimens.xml
@@ -16,4 +16,19 @@
-->
<resources>
<dimen name="scrollview_max_height">280dp</dimen>
+ <dimen name="speed_dial_context_menu_width">200dp</dimen>
+ <dimen name="context_menu_elevation">4dp</dimen>
+ <dimen name="speed_dial_recyclerview_horizontal_padding">16dp</dimen>
+
+ <!--
+ ~ This value expands the context menu to allow space for more text w/o being flush with the edge
+ ~ of the screen. Calculated with 2 * (speed_dial_recyclerview_horizontal_padding - 2dp)
+ -->
+ <dimen name="speed_dial_context_menu_extra_width">28dp</dimen>
+ <!--
+ ~ This value centers the context menu with the favorite item layout.
+ ~ Calculated with -1 * (speed_dial_context_menu_extra_width * 1.75)
+ -->
+ <dimen name="speed_dial_context_menu_x_offset">-24dp</dimen>
+ <dimen name="speed_dial_context_menu_corner_radius">16dp</dimen>
</resources> \ No newline at end of file
diff --git a/java/com/android/dialer/speeddial/res/values/strings.xml b/java/com/android/dialer/speeddial/res/values/strings.xml
index 677f772c5..59a0ab5d6 100644
--- a/java/com/android/dialer/speeddial/res/values/strings.xml
+++ b/java/com/android/dialer/speeddial/res/values/strings.xml
@@ -40,4 +40,19 @@
<!-- Title for screen prompting the user to select a contact to mark as a favorite. [CHAR LIMIT=NONE] -->
<string name="add_favorite_activity_title">Add Favorite</string>
+
+ <!-- Text for a button that places a phone/voice call [CHAR LIMIT=15]-->
+ <string name="contact_menu_voice_call">Voice Call</string>
+
+ <!-- Text for a button that places a video call [CHAR LIMIT=15]-->
+ <string name="contact_menu_video_call">Video Call</string>
+
+ <!-- Text for a button that opens the contact in the SMS app [CHAR LIMIT=15]-->
+ <string name="contact_menu_message">Message</string>
+
+ <!-- Text for a button that removes the item from the list [CHAR LIMIT=15]-->
+ <string name="contact_menu_remove">Remove</string>
+
+ <!-- Text for a button that opens the contact's info [CHAR LIMIT=15]-->
+ <string name="contact_menu_contact_info">Contact info</string>
</resources> \ No newline at end of file
diff --git a/java/com/android/dialer/speeddial/res/values/styles.xml b/java/com/android/dialer/speeddial/res/values/styles.xml
new file mode 100644
index 000000000..83bbd09e5
--- /dev/null
+++ b/java/com/android/dialer/speeddial/res/values/styles.xml
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ ~ Copyright (C) 2017 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>
+ <style name="SpeedDialContextMenuItem" parent="SecondaryText">
+ <item name="android:paddingStart">12dp</item>
+ <item name="android:minHeight">48dp</item>
+ <item name="android:gravity">center_vertical</item>
+ <item name="android:drawableTint">@color/secondary_text_color</item>
+ <item name="android:drawablePadding">12dp</item>
+ <item name="android:clickable">true</item>
+ <item name="android:background">?android:attr/selectableItemBackground</item>
+ </style>
+</resources> \ No newline at end of file