Newer
Older
VipVideo / app / src / main / res / layout / pop_control_btn.xml
bello on 11 Jan 2021 1 KB 视频解析
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@color/white"
    android:orientation="vertical">


    <TextView
        android:id="@+id/btn2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/press_w_2_t"
        android:gravity="center"
        android:padding="10dp"
        android:textColor="@color/teal_200"
        android:text="选择视频网站"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/btn1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/press_w_2_t"
        android:gravity="center"
        android:padding="10dp"
        android:textColor="@color/red"
        android:text="解析视频地址"
        android:textSize="20sp" />

    <TextView
        android:id="@+id/btn3"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@drawable/press_w_2_t"
        android:gravity="center"
        android:padding="10dp"
        android:text="关闭当前页"
        android:textSize="20sp" />

</LinearLayout>