106 lines
3.5 KiB
XML
106 lines
3.5 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="match_parent"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:orientation="vertical">
|
|
|
|
<include layout="@layout/common_toolbar"></include>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="40dp"
|
|
android:background="@drawable/shape_blue_bg16">
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:layout_marginLeft="20dp"
|
|
android:layout_marginTop="-30dp"
|
|
android:layout_marginRight="20dp"
|
|
android:paddingLeft="14dp"
|
|
android:background="@drawable/shape_w_bg8"
|
|
android:paddingTop="10dp"
|
|
android:paddingBottom="10dp"
|
|
>
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="待审核:"
|
|
android:textColor="@color/black"
|
|
android:textSize="14dp"
|
|
></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvYsq"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_weight="1"
|
|
tools:text="5000"
|
|
android:textColor="@color/black"
|
|
android:textSize="16dp"></TextView>
|
|
|
|
|
|
</LinearLayout>
|
|
<LinearLayout
|
|
android:visibility="gone"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="免费:"
|
|
android:textColor="@color/color_9"
|
|
android:textSize="10dp"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvMf1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/color_green"
|
|
android:textSize="10dp"
|
|
tools:text="5000"></TextView>
|
|
|
|
<TextView
|
|
android:layout_marginLeft="4dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="收费:"
|
|
android:textColor="@color/color_9"
|
|
android:textSize="10dp"></TextView>
|
|
|
|
<TextView
|
|
android:id="@+id/tvSf1"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/color_down_time"
|
|
android:textSize="10dp"
|
|
tools:text="5000"></TextView>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"></androidx.recyclerview.widget.RecyclerView>
|
|
|
|
</LinearLayout> |