74 lines
2.3 KiB
XML
74 lines
2.3 KiB
XML
|
<?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:layout_margin="20dp"
|
||
|
android:background="@drawable/shp_rectangle_white"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:padding="8dp"
|
||
|
android:text="申请"
|
||
|
android:textColor="@color/black"
|
||
|
android:textSize="18sp" />
|
||
|
|
||
|
<LinearLayout style="@style/item_gray">
|
||
|
|
||
|
<ImageView
|
||
|
style="@style/style_hint_star"
|
||
|
android:visibility="visible" />
|
||
|
|
||
|
<TextView
|
||
|
style="@style/item_title"
|
||
|
android:text="时间" />
|
||
|
|
||
|
<View style="@style/vertical_line" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/tv_time"
|
||
|
style="@style/sel_text_arrow"
|
||
|
android:hint="请选择时间" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout style="@style/item_gray_vertical">
|
||
|
|
||
|
<TextView
|
||
|
style="@style/item_title_vertical"
|
||
|
android:drawableLeft="@drawable/ic_start_hint"
|
||
|
android:text="原由" />
|
||
|
|
||
|
<EditText
|
||
|
android:id="@+id/et_content"
|
||
|
style="@style/item_content_edit"
|
||
|
android:hint="请输入内容"
|
||
|
android:minLines="5" />
|
||
|
</LinearLayout>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="10dp"
|
||
|
android:orientation="horizontal">
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/btn_cancel"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_weight="1"
|
||
|
android:background="@drawable/sel_btn_red_gray_re_5"
|
||
|
android:text="取消"
|
||
|
android:textColor="@color/white" />
|
||
|
|
||
|
<Button
|
||
|
android:id="@+id/btn_confirm"
|
||
|
android:layout_width="0dp"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginLeft="10dp"
|
||
|
android:layout_weight="1"
|
||
|
android:background="@drawable/sel_btn_blue_gray_re_5"
|
||
|
android:text="确定"
|
||
|
android:textColor="@color/white" />
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|