|
@@ -0,0 +1,437 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<LinearLayout 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:orientation="vertical">
|
|
|
+
|
|
|
+ <com.zkjc.common.view.CommonTitleBarV3
|
|
|
+ android:id="@+id/title_bar"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp" />
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="#f8f8f8">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_margin="12dp"
|
|
|
+ android:background="@drawable/white_bg">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/item_head"
|
|
|
+ android:layout_width="48dp"
|
|
|
+ android:layout_height="48dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:src="@mipmap/default_image" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_gljb"
|
|
|
+ android:layout_width="40dp"
|
|
|
+ android:layout_height="24dp"
|
|
|
+ android:layout_marginLeft="16dp"
|
|
|
+ android:layout_marginTop="56dp"
|
|
|
+ android:background="@drawable/shape_gljb_c"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="C级"
|
|
|
+ android:textColor="#00A870" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/rl_xm"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_toRightOf="@id/item_head">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_name"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="张萌"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_sex"
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:layout_height="16dp"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_marginTop="2dp"
|
|
|
+ android:layout_toRightOf="@id/item_name"
|
|
|
+ android:src="@drawable/icon_girl" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_jz"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="治安"
|
|
|
+ android:textColor="#ffe34d59"
|
|
|
+ android:textSize="12sp"
|
|
|
+
|
|
|
+ />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/item_rylb"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:text="肇事肇祸精神病人"
|
|
|
+ android:textColor="#ff8860cc"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/rl_sfzh"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/rl_xm"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_toRightOf="@id/item_head"
|
|
|
+ android:minHeight="18dp">
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_sfzh_mz"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:text="220102197801201816 | 满族"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/rl_address"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/rl_sfzh"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_toRightOf="@id/item_head"
|
|
|
+ android:minHeight="18dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_add"
|
|
|
+ android:layout_width="16dp"
|
|
|
+ android:layout_height="16dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:src="@drawable/icon_addresss_gray" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="8dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_toRightOf="@id/iv_add"
|
|
|
+ android:text="吉林省长春市南关区景观公寓1栋1520室"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_one"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/rl_address"
|
|
|
+ android:layout_margin="12dp"
|
|
|
+ android:background="@drawable/shape_lgdw"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_hjdpcs"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="户籍地派出所"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="吉林省长春市南关区卫星路派出所"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_hjdz"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="户 籍 地 详 址 "
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="吉林省吉林市丰满区飞跃路佳苑路委50组"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/ll_xjzd"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginBottom="12dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="现住地派出所"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="吉林省长春市南关区乐民PCS"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_below="@id/ll_one"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="警种管理单位"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="吉林省长春市南关区卫星路派出所"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="警种稳控民警"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="王武"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="稳控民警电话"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="13112341234"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="涉稳主要问题"
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="SWZDR在本地多次投诉后,于10月8日上京SF一次,之后买票至天津探亲,已三月有余,现核查是否长居天津。"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="8dp"
|
|
|
+ android:layout_marginBottom="12dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="涉 稳 经 历 "
|
|
|
+ android:textColor="#ff999999"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="4dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:text="2024-09-24 SF吉林省长春市XFJ;2024-10-08 上京SF一次,之后买票至天津探亲。"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="12sp" />
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="@drawable/white_bg"
|
|
|
+ android:minHeight="50dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/fxpc_left_tv_id"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:drawableLeft="@drawable/btx"
|
|
|
+ android:drawablePadding="5dp"
|
|
|
+ android:text="重点人电话"
|
|
|
+ android:textColor="#ff666666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="@null"
|
|
|
+ android:gravity="end|center"
|
|
|
+ android:hint="请输入重点人联系电话"
|
|
|
+ android:inputType="phone"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/bt_qs"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="44dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginTop="100dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_marginBottom="12dp"
|
|
|
+ android:background="@drawable/sw_shape_qs"
|
|
|
+ android:text="签收"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:textStyle="bold" />
|
|
|
+ </LinearLayout>
|
|
|
+ </ScrollView>
|
|
|
+</LinearLayout>
|