summaryrefslogtreecommitdiff
path: root/res
diff options
context:
space:
mode:
authorYorke Lee <yorkelee@google.com>2013-09-04 18:24:48 -0700
committerYorke Lee <yorkelee@google.com>2013-09-05 12:00:30 -0700
commite142481570d7fbda5d035555fe217314e396ae90 (patch)
tree3a8217bc8f657c77d177620693862afdd4ff637d /res
parent55d46030f7e08c60eb0f8d4d271db1a1329572dc (diff)
Add call shortcuts to phone number list adapters
* Add a new class DialerPhoneNumberListAdapter, which both RegularSearchListADapter and SmartDialNumberListAdapter extend. DialerPhoneNumberListAdapter allows the addition of pre-defined call shortcuts at the end of the phone number list that can be toggled on or off. * For the SmartDialSearchFragment, the only shortcut that is available is always the Add number to contacts shortcut. * For the RegularSearchFragment, if the user enters a string that contains all dialable numbers, it is treated as a phone number and the call directly and add number to contacts shortcuts are enabled. Otherwise, it is treated as a name, and only the add contact with a new name shortcut is enabled. * Add a intent that allows the user to directly create a new contact that has the name field pre-populated. This intent is used if the user enters input that looks like a name in the search view. Bug: 10339630 Change-Id: I2ae757ce505d85a8780d28d89e09fb7084c773b1
Diffstat (limited to 'res')
-rw-r--r--res/drawable-hdpi/ic_add_person_dk.pngbin0 -> 1533 bytes
-rw-r--r--res/drawable-hdpi/ic_phone_dk.pngbin0 -> 1467 bytes
-rw-r--r--res/drawable-hdpi/list_item_avatar_bg.pngbin0 -> 614 bytes
-rw-r--r--res/drawable-mdpi/ic_add_person_dk.pngbin0 -> 1084 bytes
-rw-r--r--res/drawable-mdpi/ic_phone_dk.pngbin0 -> 1061 bytes
-rw-r--r--res/drawable-mdpi/list_item_avatar_bg.pngbin0 -> 498 bytes
-rw-r--r--res/drawable-xhdpi/ic_add_person_dk.pngbin0 -> 2017 bytes
-rw-r--r--res/drawable-xhdpi/ic_phone_dk.pngbin0 -> 1919 bytes
-rw-r--r--res/drawable-xhdpi/list_item_avatar_bg.pngbin0 -> 705 bytes
-rw-r--r--res/values/strings.xml8
10 files changed, 8 insertions, 0 deletions
diff --git a/res/drawable-hdpi/ic_add_person_dk.png b/res/drawable-hdpi/ic_add_person_dk.png
new file mode 100644
index 000000000..7096ed214
--- /dev/null
+++ b/res/drawable-hdpi/ic_add_person_dk.png
Binary files differ
diff --git a/res/drawable-hdpi/ic_phone_dk.png b/res/drawable-hdpi/ic_phone_dk.png
new file mode 100644
index 000000000..984d6fa11
--- /dev/null
+++ b/res/drawable-hdpi/ic_phone_dk.png
Binary files differ
diff --git a/res/drawable-hdpi/list_item_avatar_bg.png b/res/drawable-hdpi/list_item_avatar_bg.png
new file mode 100644
index 000000000..e6eb68e27
--- /dev/null
+++ b/res/drawable-hdpi/list_item_avatar_bg.png
Binary files differ
diff --git a/res/drawable-mdpi/ic_add_person_dk.png b/res/drawable-mdpi/ic_add_person_dk.png
new file mode 100644
index 000000000..0e0aed02c
--- /dev/null
+++ b/res/drawable-mdpi/ic_add_person_dk.png
Binary files differ
diff --git a/res/drawable-mdpi/ic_phone_dk.png b/res/drawable-mdpi/ic_phone_dk.png
new file mode 100644
index 000000000..c55571a48
--- /dev/null
+++ b/res/drawable-mdpi/ic_phone_dk.png
Binary files differ
diff --git a/res/drawable-mdpi/list_item_avatar_bg.png b/res/drawable-mdpi/list_item_avatar_bg.png
new file mode 100644
index 000000000..1306cfc03
--- /dev/null
+++ b/res/drawable-mdpi/list_item_avatar_bg.png
Binary files differ
diff --git a/res/drawable-xhdpi/ic_add_person_dk.png b/res/drawable-xhdpi/ic_add_person_dk.png
new file mode 100644
index 000000000..5211f5c92
--- /dev/null
+++ b/res/drawable-xhdpi/ic_add_person_dk.png
Binary files differ
diff --git a/res/drawable-xhdpi/ic_phone_dk.png b/res/drawable-xhdpi/ic_phone_dk.png
new file mode 100644
index 000000000..74a7032f7
--- /dev/null
+++ b/res/drawable-xhdpi/ic_phone_dk.png
Binary files differ
diff --git a/res/drawable-xhdpi/list_item_avatar_bg.png b/res/drawable-xhdpi/list_item_avatar_bg.png
new file mode 100644
index 000000000..3f271a0f6
--- /dev/null
+++ b/res/drawable-xhdpi/list_item_avatar_bg.png
Binary files differ
diff --git a/res/values/strings.xml b/res/values/strings.xml
index 65746bb04..c6947dd12 100644
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -612,4 +612,12 @@
<string name="favorite_hidden">Hidden from favorites</string>
<!-- Text displayed for the undo button to undo removing a favorite contact -->
<string name="favorite_hidden_undo">Undo</string>
+
+ <!-- Shortcut item used to call a number directly from search -->
+ <string name="search_shortcut_call_number">Call
+ <xliff:g id="number">%s</xliff:g>
+ </string>
+
+ <!-- Shortcut item used to add a number directly from search -->
+ <string name="search_shortcut_add_to_contacts">Add to contacts</string>
</resources>