summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorNathanielWaggoner <nwaggoner@cyngn.com>2016-04-19 17:11:54 -0700
committerGerrit Code Review <gerrit@cyanogenmod.org>2016-04-29 17:59:13 -0700
commit09e53825f01f43bd7f8de47ba71b3065592ebdbb (patch)
treeca6664d05c6681f594a479455339d7f5beb3b9c8 /res
parentb98970ad8c5b154071fb2ba02cdaf57720a140a2 (diff)
downloadandroid_packages_apps_InCallUI-09e53825f01f43bd7f8de47ba71b3065592ebdbb.tar.gz
android_packages_apps_InCallUI-09e53825f01f43bd7f8de47ba71b3065592ebdbb.tar.bz2
android_packages_apps_InCallUI-09e53825f01f43bd7f8de47ba71b3065592ebdbb.zip
DeepLink Integration in InCallUi
NOTES-53 Change-Id: Idadb50f2493078f5f05ce64a85210c1709dce5c5
Diffstat (limited to 'res')
-rw-r--r--res/layout/call_button_fragment.xml6
-rw-r--r--res/values/cm_strings.xml6
-rw-r--r--res/values/config.xml2
3 files changed, 13 insertions, 1 deletions
diff --git a/res/layout/call_button_fragment.xml b/res/layout/call_button_fragment.xml
index 1842d88b..4eb16e10 100644
--- a/res/layout/call_button_fragment.xml
+++ b/res/layout/call_button_fragment.xml
@@ -110,6 +110,12 @@
android:contentDescription="@string/onscreenVideoCallText"
android:visibility="gone" />
+ <!-- Take a note for this call -->
+ <ImageButton android:id="@+id/takeNoteButton"
+ style="@style/InCallButton"
+ android:contentDescription="@string/onscreenNoteText"
+ android:visibility="gone" />
+
<!-- "Switch camera" for video calls. -->
<ToggleButton android:id="@+id/switchCameraButton"
style="@style/InCallCompoundButton"
diff --git a/res/values/cm_strings.xml b/res/values/cm_strings.xml
index c988d8e8..77b40f21 100644
--- a/res/values/cm_strings.xml
+++ b/res/values/cm_strings.xml
@@ -65,4 +65,10 @@
<!-- [CHAR LIMIT=12] -->
<string name="notification_action_block">Block</string>
+ <!-- text for the onscreen Note Badge in the CallButtonFragment. When clicked this button will
+ launch the appropriate Note taking application as configured by the user. -->
+ <string name="onscreenNoteText">Take note</string>
+ <!-- Text to place in the name field of a Call DeepLink when the contact name is not known -->
+ <string name="deeplink_unknown_caller">Unknown</string>
+
</resources>
diff --git a/res/values/config.xml b/res/values/config.xml
index b81ba3ca..0d1bcdd0 100644
--- a/res/values/config.xml
+++ b/res/values/config.xml
@@ -24,4 +24,4 @@
<!-- The number of milliseconds after which a video call will automatically enter fullscreen
mode (requires video_call_auto_fullscreen to be true). -->
<integer name="video_call_auto_fullscreen_timeout">5000</integer>
-</resources> \ No newline at end of file
+</resources>