2021-10-19 18:04:07 +08:00
|
|
|
<?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"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:gravity="right"
|
2021-10-19 18:04:07 +08:00
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_cancel"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:layout_width="wrap_content"
|
2021-10-19 18:04:07 +08:00
|
|
|
android:layout_height="wrap_content"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:background="@null"
|
|
|
|
android:minWidth="0dp"
|
|
|
|
android:minHeight="0dp"
|
|
|
|
android:padding="10dp"
|
2021-10-19 18:04:07 +08:00
|
|
|
android:text="取消"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:textColor="@color/gray_text" />
|
2021-10-19 18:04:07 +08:00
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_confirm"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:layout_width="wrap_content"
|
2021-10-19 18:04:07 +08:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="10dp"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:background="@null"
|
|
|
|
android:minWidth="0dp"
|
|
|
|
android:minHeight="0dp"
|
|
|
|
android:padding="10dp"
|
2021-10-19 18:04:07 +08:00
|
|
|
android:text="确定"
|
2021-11-09 09:24:54 +08:00
|
|
|
android:textColor="@color/text_blue" />
|
2021-10-19 18:04:07 +08:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|