<?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:orientation="vertical">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="@dimen/h63"
|
android:background="@drawable/bg_write_border"
|
android:orientation="horizontal">
|
|
<LinearLayout
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="53"
|
android:gravity="center">
|
|
<CheckBox
|
android:id="@+id/ck_date_item"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:button="@drawable/check_box_selector" />
|
</LinearLayout>
|
|
|
<TextView
|
android:id="@+id/tv_date_order"
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="69"
|
android:gravity="center"
|
android:text="时间1"
|
android:textColor="@color/white"
|
android:textSize="@dimen/font_size_17" />
|
|
|
<RelativeLayout
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="290">
|
|
<TextView
|
android:id="@+id/tv_date_valid"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_margin="@dimen/h8"
|
android:background="@drawable/bg_edittext1"
|
android:clickable="true"
|
android:gravity="center"
|
android:textColor="@color/white"
|
android:textSize="@dimen/font_size_13" />
|
|
</RelativeLayout>
|
|
<TextView
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="133"
|
android:gravity="center"
|
android:text="状态"
|
android:textColor="@color/white"
|
android:textSize="@dimen/font_size_21"
|
android:visibility="gone" />
|
|
|
<RelativeLayout
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="133"
|
android:gravity="center">
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:layout_margin="@dimen/w10"
|
android:background="@drawable/identity_list_background"
|
android:orientation="horizontal">
|
|
<Spinner
|
android:id="@+id/spinner_date"
|
android:layout_width="@dimen/w150"
|
android:layout_height="@dimen/h45"
|
android:background="@null"
|
android:gravity="center_vertical"
|
android:spinnerMode="dropdown" />
|
|
<ImageView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_alignParentRight="true"
|
android:layout_centerVertical="true"
|
android:layout_marginRight="@dimen/w10"
|
android:src="@drawable/pulldown" />
|
|
|
</RelativeLayout>
|
|
|
</RelativeLayout>
|
|
<RelativeLayout
|
android:layout_width="0dp"
|
android:layout_height="match_parent"
|
android:layout_weight="56">
|
|
|
<ImageView
|
android:id="@+id/iv_date_delete"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true"
|
android:src="@drawable/delete_time_rule" />
|
</RelativeLayout>
|
</LinearLayout>
|
|
|
</LinearLayout>
|