|
|
@@ -0,0 +1,73 @@
|
|
|
+<?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:orientation="vertical"
|
|
|
+ android:background="@drawable/x_shap_shadow_bg_rectgangle_white"
|
|
|
+ android:paddingRight="12dp"
|
|
|
+ android:paddingTop="12dp"
|
|
|
+ android:paddingLeft="20dp"
|
|
|
+ android:paddingBottom="12dp">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_title_tv"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="进行中"
|
|
|
+ android:textColor="@color/black"
|
|
|
+ android:textSize="15dp"
|
|
|
+ android:layout_marginBottom="13dp"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/item_icon_iv"
|
|
|
+ android:layout_width="@dimen/view_size_60"
|
|
|
+ android:layout_height="@dimen/view_size_60"
|
|
|
+ android:src="@drawable/icon_lj"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_anem_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:layout_alignTop="@+id/item_icon_iv"
|
|
|
+ android:layout_toEndOf="@+id/item_icon_iv"
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_above="@+id/item_num_tv"
|
|
|
+ style="@style/txt_style_15"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_num_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:layout_below="@+id/item_money"
|
|
|
+ android:layout_alignStart="@+id/item_anem_tv"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:textColor="@color/txt_black_8e8e8e"
|
|
|
+ android:textSize="@dimen/text_size_12"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_money"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:textSize="18dp"
|
|
|
+ android:textColor="@color/txt_red"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_alignParentRight="true"/>
|
|
|
+ </RelativeLayout>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/line_tv"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0.5dp"
|
|
|
+ android:background="@color/white_bg_line"
|
|
|
+ android:layout_marginTop="17dp"/>
|
|
|
+</LinearLayout>
|