28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
|
<?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"
|
||
|
xmlns:tools="http://schemas.android.com/tools"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent"
|
||
|
android:orientation="vertical"
|
||
|
tools:context=".activity.LiveTRTCAnchorActivity">
|
||
|
|
||
|
<com.tencent.rtmp.ui.TXCloudVideoView
|
||
|
android:id="@+id/live_cloud_view_main"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent" />
|
||
|
|
||
|
<com.tencent.rtmp.ui.TXCloudVideoView
|
||
|
android:id="@+id/live_cloud_view_two"
|
||
|
android:background="@color/color_yellow"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_alignParentRight="true"
|
||
|
android:layout_marginBottom="100dp"
|
||
|
android:layout_marginRight="20dp"
|
||
|
android:layout_width="80dp"
|
||
|
android:layout_height="100dp" />
|
||
|
|
||
|
<!-- 准备的-->
|
||
|
<include layout="@layout/view_trtclive_ready" android:id="@+id/ready_view"/>
|
||
|
|
||
|
</RelativeLayout>
|