gridclient/gridmodule/src/main/res/layout/activity_census_cult_detail.xml
2023-09-07 17:39:25 +08:00

220 lines
7.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:clipChildren="true">
<LinearLayout
android:id="@+id/ll_base_info"
android:layout_width="match_parent"
android:layout_height="50dp"
android:background="@drawable/shape_blue_bg"
android:orientation="vertical"
android:padding="20dp">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/ll_base_info"
android:layout_marginTop="-20dp"
android:background="@drawable/shape_rectangle_white_top"
android:orientation="vertical"
android:paddingTop="15dp">
<androidx.core.widget.NestedScrollView
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" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:background="@color/line_bg_EF" />
<TextView
style="@style/issue_report_title"
android:padding="8dp"
android:text="信教信息" />
<LinearLayout style="@style/item_white" android:visibility="gone">
<TextView
style="@style/item_title_23"
android:text="初次发现日期"
android:textSize="12sp" />
<TextView
android:id="@+id/tv_first_date"
style="@style/item_content_23" />
</LinearLayout>
<LinearLayout style="@style/item_white">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="管控情况" />
<TextView
android:id="@+id/tv_control_case"
style="@style/item_content_23" />
</LinearLayout>
<LinearLayout style="@style/item_white">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="管控人姓名" />
<TextView
android:id="@+id/et_control_name"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="管 控 人\n联系方式" />
<TextView
android:id="@+id/et_control_phone"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white" android:visibility="gone">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="帮扶情况" />
<TextView
android:id="@+id/et_help_case"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white" android:visibility="gone">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="帮扶人姓名" />
<TextView
android:id="@+id/et_help_name"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white" android:visibility="gone">
<TextView
style="@style/item_title_23"
android:text="帮 扶 人\n联系方式" />
<TextView
android:id="@+id/et_help_phone"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="有无犯罪史" />
<Switch
android:id="@+id/sw_is_crime"
style="@style/item_switch_have"
android:layout_gravity="center_vertical"
android:enabled="false" />
</LinearLayout>
<LinearLayout style="@style/item_white">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="犯罪情况" />
<TextView
android:id="@+id/et_crime_case"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white" android:visibility="gone">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="吸毒原因" />
<TextView
android:id="@+id/tv_drug_case"
style="@style/item_content_23"
android:layout_gravity="center_vertical" />
</LinearLayout>
<LinearLayout style="@style/item_white" android:visibility="gone">
<TextView
style="@style/item_title_23"
android:layout_gravity="center_vertical"
android:text="吸毒后果" />
<TextView
android:id="@+id/tv_drug_after"
style="@style/item_content_23" />
</LinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>
</RelativeLayout>