realtimelocation/app/src/main/res/layout/activity_census_nmigrant_detail.xml
2020-12-21 15:20:31 +08:00

168 lines
5.7 KiB
XML

<?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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/layout_base_info_detail" />
<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
android:id="@+id/tv_issue_base_info"
style="@style/issue_report_title"
android:padding="8dp"
android:text="流动人口信息"
android:textStyle="bold" />
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:text="流入原因" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_cause"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:text="办证类型" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_card_type"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:text="证件号码" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_card_number"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:text="登记日期" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_start_date"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:text="到期日期" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_end_date"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:text="住所类型" />
<View style="@style/vertical_line" />
<TextView
android:id="@+id/tv_house_type"
style="@style/sel_text_show"
android:hint="未录入" />
</LinearLayout>
<LinearLayout style="@style/item_gray">
<ImageView
style="@style/style_hint_star"
android:visibility="invisible" />
<TextView
style="@style/item_title"
android:layout_gravity="center_vertical"
android:text="重点关注" />
<View style="@style/vertical_line" />
<Switch
android:id="@+id/sw_attention"
style="@style/item_switch"
android:enabled="false" />
</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>
</android.support.v4.widget.NestedScrollView>