fragment_live_top_layer.xml 1.33 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/root_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/live_leave"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="主播暂时离开"
        android:textColor="#ffffff"
        android:textSize="30sp"
        android:visibility="gone" />

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/live_bottom"
        android:layout_marginBottom="10dp"
        android:layout_marginTop="5dp" 
        >
        <include layout="@layout/includ_live" />
    </FrameLayout>

    <FrameLayout
        android:id="@+id/live_bottom"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" 
        android:layout_marginBottom="5dp"
        >
        <include
            layout="@layout/includ_live_button" />
        <include
            layout="@layout/includ_room_edit"
            android:visibility="gone" />
    </FrameLayout>
    
</RelativeLayout>