summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSuresh Koleti <skolet@codeaurora.org>2015-11-19 20:04:45 +0530
committerSteve Kondik <steve@cyngn.com>2016-05-20 23:09:14 -0700
commit8c4ffdccfed6120dbde1ecf1851472c4beb5a8aa (patch)
tree5f4c1195d8e3ab8272212a77e0eb88a6c1c56296
parentdd3ad8c1a0cb9247280d2c2600ba8570446a6b39 (diff)
downloadpackages_apps_InCallUI-8c4ffdccfed6120dbde1ecf1851472c4beb5a8aa.tar.gz
packages_apps_InCallUI-8c4ffdccfed6120dbde1ecf1851472c4beb5a8aa.tar.bz2
packages_apps_InCallUI-8c4ffdccfed6120dbde1ecf1851472c4beb5a8aa.zip
IMS-VT: Move preview video view after photo view in landscape layout
Preview video view is overlapped with photo view for VT-TX calls in landscape mode due to that preview video is not seen. Move preview video view after photo view in landscape layout so preview video will be shown on top of photo view. Change-Id: Iaaca652124b651baa66cbecc481d1ebd9e7b3279 CRs-Fixed: 941574
-rw-r--r--res/layout-land/call_card_fragment.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/res/layout-land/call_card_fragment.xml b/res/layout-land/call_card_fragment.xml
index 76d4964a..f0d336c8 100644
--- a/res/layout-land/call_card_fragment.xml
+++ b/res/layout-land/call_card_fragment.xml
@@ -22,14 +22,6 @@
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" >
- <fragment android:name="com.android.incallui.VideoCallFragment"
- android:layout_alignParentStart="true"
- android:layout_gravity="start|center_vertical"
- android:id="@+id/videoCallFragment"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:layout_alignParentBottom="true" />
-
<!-- Secondary "Call info" block, for the background ("on hold") call. -->
<include layout="@layout/secondary_call_info"
android:id="@+id/secondary_call_info"
@@ -119,6 +111,14 @@
</FrameLayout>
+ <fragment android:name="com.android.incallui.VideoCallFragment"
+ android:layout_alignParentStart="true"
+ android:layout_gravity="start|center_vertical"
+ android:id="@+id/videoCallFragment"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:layout_alignParentBottom="true" />
+
<include layout="@layout/manage_conference_call_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"