| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:background="@color/white" >
- <RelativeLayout
- android:id="@+id/r1"
- android:layout_width="match_parent"
- android:layout_height="56dp" >
- <TextView
- android:id="@+id/tv_close"
- android:layout_width="100dp"
- android:layout_height="50dp"
- android:layout_alignParentRight="true"
- android:layout_centerVertical="true"
- android:layout_marginRight="10dp"
- android:gravity="center_vertical|right"
- android:text="取消"
- android:textColor="@color/red"
- android:textSize="15sp" />
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_alignParentBottom="true"
- android:background="#EBEBEB" />
- </RelativeLayout>
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_below="@+id/r1"
- android:orientation="vertical" >
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="20dp"
- android:text="创建人"
- android:textColor="@color/black"
- android:textSize="15sp"
- />
- <RelativeLayout
- android:id="@+id/rl_reservoir"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/background_line_shape" >
- <TextView
- android:id="@+id/tv_reservoir"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:text="请选择创建人"
- android:singleLine="true"
- android:textColor="@color/gray"
- android:textSize="14sp" />
- </RelativeLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="20dp"
- android:text="开始日期"
- android:textColor="@color/black"
- android:textSize="15sp"
- />
- <RelativeLayout
- android:id="@+id/rl_brand"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:layout_marginTop="10dp"
- android:background="@drawable/background_line_shape" >
- <TextView
- android:id="@+id/tv_brand"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:text="请选择开始日期"
- android:textColor="@color/gray"
- android:textSize="14sp" />
- </RelativeLayout>
- <TextView
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10dp"
- android:layout_marginTop="20dp"
- android:text="结束日期"
- android:textColor="@color/black"
- android:textSize="15sp"
- />
- <RelativeLayout
- android:id="@+id/rl_zero_inventory"
- android:layout_width="match_parent"
- android:layout_height="45dp"
- android:background="@drawable/background_line_shape"
- android:layout_marginTop="10dp"
- >
- <TextView
- android:id="@+id/tv_zero_inventory"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_centerInParent="true"
- android:gravity="center"
- android:textColor="@color/gray"
- android:text="请选择结束日期"
- />
- </RelativeLayout>
- </LinearLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1dp"
- android:layout_above="@+id/l1"
- android:background="#EBEBEB" />
- <LinearLayout
- android:id="@+id/l1"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_alignParentBottom="true"
- android:orientation="horizontal" >
- <TextView
- android:id="@+id/btn_reset"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/white"
- android:gravity="center"
- android:text="重置"
- android:textColor="@color/red"
- android:textSize="18sp" />
- <TextView
- android:id="@+id/btn_sure"
- android:layout_width="0dp"
- android:layout_height="match_parent"
- android:layout_weight="1"
- android:background="@color/red"
- android:gravity="center"
- android:text="确定"
- android:textColor="@color/white"
- android:textSize="18sp" />
- </LinearLayout>
- </RelativeLayout>
|