citygovernance/baselib/src/main/res/layout/layout_base_info_detail.xml
2021-10-26 19:39:03 +08:00

204 lines
6.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/cv_base_info_detail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
app:cardCornerRadius="5dp"
app:cardPreventCornerOverlap="true"
app:cardUseCompatPadding="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<com.tenlionsoft.baselib.core.widget.views.ExpandableLinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingBottom="10dp"
app:defaultItemCount="5"
app:expandText="点击展开"
app:hideText="点击收起"
app:useDefaultBottom="true">
<TextView
style="@style/issue_report_title"
android:padding="8dp"
android:text="基础信息"
android:textStyle="bold" />
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="姓名" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_name"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="曾用名" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_former_name"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="性别" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_gender"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="身份证号" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_id_card"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="联系方式" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_phone"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="籍贯" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_native"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="名族" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_nation"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="户籍地" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_register_loc"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="现住地" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_cur_loc"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="详细地址" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_base_cur_address"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
</com.tenlionsoft.baselib.core.widget.views.ExpandableLinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>