summaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorPavan Tatavarthi <ctpavan@codeaurora.org>2013-10-16 18:15:26 -0700
committerAnju Mathapati <anjucm@codeaurora.org>2013-11-18 15:48:57 -0800
commite710212acbb403460f24a9b87eeec10fb77b41cc (patch)
tree3ce26d5059d445f8430658ac1050d3fda2dea693 /res
parent0efaf169ec75da26ac1390e0c84ebc4671b98a2c (diff)
downloadpackages_apps_InCallUI-e710212acbb403460f24a9b87eeec10fb77b41cc.tar.gz
packages_apps_InCallUI-e710212acbb403460f24a9b87eeec10fb77b41cc.tar.bz2
packages_apps_InCallUI-e710212acbb403460f24a9b87eeec10fb77b41cc.zip
IMS support for UI interface
1. UI support for conference call participant display, hangup using uri, conference uri dial, add participant, 2. Add ims related data types to Call object 3. Add ims related APIs to CallCommandService and CallHandlerService Change-Id: If782aa90dc4741499a67ee6a62f48576425a0574
Diffstat (limited to 'res')
-rw-r--r--res/drawable-hdpi/ic_add_group_holo_dark.pngbin0 -> 2230 bytes
-rw-r--r--res/drawable-mdpi/ic_add_group_holo_dark.pngbin0 -> 1441 bytes
-rw-r--r--res/drawable-xhdpi/ic_add_group_holo_dark.pngbin0 -> 3181 bytes
-rw-r--r--res/layout/call_button_fragment.xml11
-rwxr-xr-xres/values/strings.xml2
5 files changed, 11 insertions, 2 deletions
diff --git a/res/drawable-hdpi/ic_add_group_holo_dark.png b/res/drawable-hdpi/ic_add_group_holo_dark.png
new file mode 100644
index 00000000..6d46ccff
--- /dev/null
+++ b/res/drawable-hdpi/ic_add_group_holo_dark.png
Binary files differ
diff --git a/res/drawable-mdpi/ic_add_group_holo_dark.png b/res/drawable-mdpi/ic_add_group_holo_dark.png
new file mode 100644
index 00000000..a676ab88
--- /dev/null
+++ b/res/drawable-mdpi/ic_add_group_holo_dark.png
Binary files differ
diff --git a/res/drawable-xhdpi/ic_add_group_holo_dark.png b/res/drawable-xhdpi/ic_add_group_holo_dark.png
new file mode 100644
index 00000000..85924aba
--- /dev/null
+++ b/res/drawable-xhdpi/ic_add_group_holo_dark.png
Binary files differ
diff --git a/res/layout/call_button_fragment.xml b/res/layout/call_button_fragment.xml
index 013d1b22..b986d340 100644
--- a/res/layout/call_button_fragment.xml
+++ b/res/layout/call_button_fragment.xml
@@ -163,9 +163,16 @@
android:contentDescription="@string/onscreenMergeCallsText"
android:visibility="gone"
/>
+ <!-- Separator between 5th (or 6th) button and right padding -->
+ <View style="@style/VerticalSeparator" />
- <!-- Separator between 4th (or 5th) button and right padding -->
- <View style="@style/VerticalSeparator"/>
+ <ImageButton
+ android:id="@+id/addParticipant"
+ style="@style/InCallButton"
+ android:background="@drawable/ic_add_group_holo_dark"
+ android:contentDescription="@string/onscreenAddParticipant" />
+
+ <View style="@style/VerticalSeparator" />
</LinearLayout>
diff --git a/res/values/strings.xml b/res/values/strings.xml
index f6d67fa0..318c85e4 100755
--- a/res/values/strings.xml
+++ b/res/values/strings.xml
@@ -917,6 +917,8 @@
<!-- Text for the onscreen "Video call" button used to change a voice call
to a video call. [CHAR LIMIT=10] -->
<string name="onscreenVideoCallText">Video call</string>
+ <!-- Text for the onscreen "Add Participant" button -->
+ <string name="onscreenAddParticipant">Add Participant</string>
<!-- Menu item label in SIM Contacts: Import a single contact entry from the SIM card -->
<string name="importSimEntry">Import</string>