39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?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="@drawable/bg_vip"
|
|
android:gravity="center_horizontal"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
tools:viewBindingIgnore="true"
|
|
android:orientation="vertical"
|
|
android:paddingLeft="25dp"
|
|
android:paddingRight="25dp">
|
|
|
|
<TextView
|
|
android:id="@+id/freeVideo_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="19dp"
|
|
android:layout_marginBottom="17dp"
|
|
android:text=""
|
|
android:textColor="@color/one_text"
|
|
android:textSize="17sp"
|
|
android:textStyle="bold" />
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/freeVideo_list"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<Button
|
|
android:background="@drawable/selector_button"
|
|
android:id="@+id/freeVideo_change"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="18dp"
|
|
android:layout_marginBottom="25dp"
|
|
android:text="换一批" />
|
|
|
|
|
|
</LinearLayout> |