realtimelocation/app/src/main/res/layout/activity_census_base_detail.xml

275 lines
8.4 KiB
XML
Raw Normal View History

2020-12-21 15:20:31 +08:00
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView 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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:overScrollMode="never"
android:scrollbars="none">
<LinearLayout
android:id="@+id/ll_content"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
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">
<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:text="身份证号" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_identity"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="姓&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;名" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_name"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="曾&#160;&#160;&#160;&#160;名" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_once_name"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="性&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;别" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_gender"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="出生日期" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_birth"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="民&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;族" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_nation"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="籍&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;贯" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_native"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="婚姻状况" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_marry"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="政治面貌" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_political"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="学&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;历" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_edu"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="宗教信仰" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_religion"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="职&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;业" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_work"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
2022-02-16 10:40:48 +08:00
android:text="工作单位" />
2020-12-21 15:20:31 +08:00
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_work_space"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="联系方式" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_phone"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="现 住 地" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_cur_loc"
style="@style/sel_text_show" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<TextView
style="@style/item_title"
android:text="现&#160;&#160;&#160;&#160;址" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/et_cur_detail"
style="@style/sel_text_show" />
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>