| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154 |
- <?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"
- android:background="@color/white"
- android:orientation="vertical" >
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_settlement_type"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="预存金额:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_prestore_sum"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="冻结金额:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_freezesum"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="取待审核:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_waitauditsum"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="存待审核:"
- android:textColor="@color/black" />
- <TextView
- android:id="@+id/tv_waitsetprestore"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="款项金额:"
- android:textColor="@color/black" />
- <EditText
- android:id="@+id/et_earnestSum"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@null"
- android:hint="请输入款项金额"
- android:inputType="number|numberDecimal"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="备注:"
- android:textColor="@color/black" />
- <EditText
- android:id="@+id/et_remark"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@null"
- android:hint="请输入备注"
- android:text="结算方式:"
- android:textSize="13sp" />
- </LinearLayout>
- </LinearLayout>
|