| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- >
- <FrameLayout
- android:id="@+id/big_container"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <TextureView
- android:id="@+id/camera_preview"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- />
- </FrameLayout>
- <!-- <FrameLayout-->
- <!-- android:id="@+id/pk_container"-->
- <!-- android:layout_width="match_parent"-->
- <!-- android:layout_height="270dp"-->
- <!-- android:layout_marginTop="130dp"-->
- <!-- >-->
- <!-- <com.yunbao.live.custom.MyFrameLayout4-->
- <!-- android:id="@+id/left_container"-->
- <!-- android:layout_width="0dp"-->
- <!-- android:layout_height="match_parent"-->
- <!-- android:layout_marginBottom="20dp"-->
- <!-- />-->
- <!-- <com.yunbao.live.custom.MyFrameLayout4-->
- <!-- android:id="@+id/right_container"-->
- <!-- android:layout_width="0dp"-->
- <!-- android:layout_height="match_parent"-->
- <!-- android:layout_gravity="right"-->
- <!-- android:layout_marginBottom="20dp"-->
- <!-- />-->
- <!-- </FrameLayout>-->
- <LinearLayout
- android:id="@+id/pk_container"
- android:layout_width="match_parent"
- android:layout_height="500dp"
- android:layout_marginTop="130dp"
- android:orientation="vertical"
- >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="250dp"
- android:orientation="horizontal">
- <com.yunbao.live.custom.MyFrameLayout4
- android:id="@+id/left_container"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- />
- <com.yunbao.live.custom.MyFrameLayout4
- android:id="@+id/right_container"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- />
- </LinearLayout>
- <com.yunbao.live.custom.MyFrameLayout4
- android:id="@+id/bottom_right_container"
- android:layout_width="match_parent"
- android:layout_gravity="center_horizontal"
- android:layout_height="250dp"
- />
- </LinearLayout>
- <com.yunbao.live.custom.MyFrameLayout3
- android:id="@+id/small_container"
- android:layout_width="0dp"
- android:layout_height="0dp"
- android:layout_alignParentBottom="true"
- android:layout_alignParentRight="true"
- android:layout_marginBottom="120dp"
- app:mfl3_ratio="0.25"
- />
- </RelativeLayout>
|