Fix video zoom on landscape

This commit is contained in:
Erwan Croze 2016-12-19 16:51:35 +01:00
parent 23a9f95d88
commit 79ae7fd963
2 changed files with 17 additions and 18 deletions

View file

@ -5,19 +5,10 @@
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/status"
android:name="org.linphone.StatusFragment"
android:layout_width="match_parent"
android:layout_height="35dp"
tools:layout="@layout/status" />
<android.support.v4.widget.DrawerLayout
android:id="@+id/side_menu"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@id/status">
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
@ -53,7 +44,8 @@
android:id="@+id/active_call"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:visibility="visible">
android:visibility="visible"
android:layout_marginTop="40dp">
<LinearLayout
android:id="@+id/active_call_info"
@ -278,7 +270,7 @@
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1">
<ImageView
@ -288,7 +280,7 @@
android:contentDescription="@string/content_description_switch_video"
android:padding="20dp"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
android:layout_height="wrap_content"/>
<ProgressBar
android:id="@+id/video_in_progress"
@ -490,4 +482,11 @@
</android.support.v4.widget.DrawerLayout>
<fragment
android:id="@+id/status"
android:name="org.linphone.StatusFragment"
android:layout_width="match_parent"
android:layout_height="35dp"
tools:layout="@layout/status" />
</RelativeLayout>