| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <?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="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/tv_title_settlement_type"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="结算方式:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <TextView
- android:id="@+id/tv_settlement_type"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- </LinearLayout>
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginBottom="10dp"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="10dp"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/tv_title_amount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="金 额:"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- <EditText
- android:id="@+id/edt_amount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="5dp"
- android:background="@null"
- android:hint="请输入金额"
- android:textColor="@color/black"
- android:textSize="@dimen/textsize_14" />
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:background="@color/EBEBEB" />
- </LinearLayout>
|