bottombar.xml 5.56 KB
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="#00000000">

    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true"
        android:background="#00000000"
        android:orientation="vertical"
        android:paddingLeft="5dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:orientation="horizontal">

            <CheckBox
                android:id="@+id/watermark"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="true"
                android:text="水印"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>

            <CheckBox
                android:id="@+id/mute"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="false"
                android:text="静音"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>

            <CheckBox
                android:id="@+id/bgm"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="false"
                android:text="bgm"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>

            <CheckBox
                android:id="@+id/ear_mirror"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="false"
                android:text="耳反"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>
        </LinearLayout>

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="10dp"
            android:orientation="horizontal">

            <ImageView
                android:id="@+id/backoff"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_vertical"
                android:layout_marginRight="10dp"
                android:background="@drawable/recorder_delete_icon" />

            <TextView
                android:id="@+id/click_to_shoot"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_weight="1"
                android:background="#11123456"
                android:text="开始直播"
                android:textColor="#FF4081"
                android:textSize="14sp"></TextView>

            <CheckBox
                android:id="@+id/audio_only"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="false"
                android:text="音频推流"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>

            <CheckBox
                android:id="@+id/front_camera_mirror"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="true"
                android:text="前置镜像"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>

            <CheckBox
                android:id="@+id/click_to_switch_beauty"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:layout_marginLeft="10dp"
                android:layout_weight="1"
                android:background="#11123456"
                android:checked="true"
                android:text="美颜"
                android:textColor="#FF4081"
                android:textSize="14sp"></CheckBox>

        </LinearLayout>

    </LinearLayout>
</RelativeLayout>