oasystem/oamodule/src/main/res/layout/dialog_resume.xml
2022-07-05 14:35:53 +08:00

136 lines
4.7 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:background="@drawable/shp_rectangle_white_5"
android:orientation="vertical">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
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_hor_content">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
style="@style/item_title_23"
android:text="单位名称"
app:text_show_hint="true" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceEditText
android:id="@+id/et_name"
style="@style/item_content"
android:hint="请输入单位名称" />
</LinearLayout>
<LinearLayout style="@style/item_hor_content">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
style="@style/item_title_23"
android:text="所在部门"
app:text_show_hint="true" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceEditText
android:id="@+id/et_dept"
style="@style/item_content"
android:hint="请输入所在部门" />
</LinearLayout>
<LinearLayout style="@style/item_hor_content">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
style="@style/item_title_23"
android:text="工作内容"
app:text_show_hint="true" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceEditText
android:id="@+id/et_content"
style="@style/item_content"
android:hint="请输入工作内容" />
</LinearLayout>
<LinearLayout style="@style/item_hor_content">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
style="@style/item_title_23"
android:text="离职原因"
app:text_show_hint="true" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceEditText
android:id="@+id/et_cause"
style="@style/item_content"
android:hint="请输入离职原因" />
</LinearLayout>
<LinearLayout
style="@style/item_hor_content"
android:layout_marginTop="10dp">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
style="@style/item_title"
android:text="开始时间"
app:text_show_hint="true" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
android:id="@+id/tv_start_date"
style="@style/item_content"
android:drawableRight="@drawable/ic_arrow_gray_down"
android:hint="请选择开始时间" />
</LinearLayout>
<LinearLayout
style="@style/item_hor_content"
android:layout_marginTop="10dp">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
style="@style/item_title"
android:text="结束时间"
app:text_show_hint="true" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
android:id="@+id/tv_end_date"
style="@style/item_content"
android:drawableRight="@drawable/ic_arrow_gray_down"
android:hint="请选择结束时间" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:gravity="right"
android:orientation="horizontal">
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
android:id="@+id/tv_cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="20dp"
android:clickable="true"
android:focusable="true"
android:padding="10dp"
android:text="取消"
android:textColor="@color/gray_text" />
<com.tenlionsoft.baselib.core.widget.views.TypeFaceTextView
android:id="@+id/tv_confirm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:padding="10dp"
android:text="保存"
android:textColor="@color/text_blue" />
</LinearLayout>
</LinearLayout>