|
@@ -1,35 +1,38 @@
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+<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"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
android:background="#f8f8f8"
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
- <RelativeLayout
|
|
|
+ <com.zkjc.common.view.CommonTitleBarV3
|
|
|
+ android:id="@+id/title_bar"
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="44dp"
|
|
|
- android:layout_marginTop="44dp">
|
|
|
-
|
|
|
- <Button
|
|
|
- android:id="@+id/bt_back"
|
|
|
- android:layout_width="20dp"
|
|
|
- android:layout_height="20dp"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_marginLeft="16dp"
|
|
|
- android:background="@mipmap/left_jt" />
|
|
|
-
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerInParent="true"
|
|
|
- android:text="反馈"
|
|
|
- android:textColor="#ff111111"
|
|
|
- android:textSize="18sp" />
|
|
|
- </RelativeLayout>
|
|
|
-
|
|
|
- <ScrollView
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_marginLeft="16dp"
|
|
|
+ android:layout_marginRight="16dp"
|
|
|
+ android:id="@+id/tv_confirm"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:background="@drawable/bg_shape_blue_corner8"
|
|
|
+ android:text="确定"
|
|
|
+ android:textColor="#ffffffff"
|
|
|
+ android:textSize="18sp"
|
|
|
+ android:layout_marginBottom="12dp"
|
|
|
+ android:layout_height="44dp"/>
|
|
|
+
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
android:layout_marginTop="12dp"
|
|
|
+ android:layout_below="@id/title_bar"
|
|
|
+ android:layout_above="@id/tv_confirm"
|
|
|
+ android:id="@+id/scrollView"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
@@ -42,6 +45,7 @@
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginLeft="16dp"
|
|
|
+ android:id="@+id/layout_dhlx"
|
|
|
android:layout_marginRight="16dp"
|
|
|
android:background="@drawable/shape_gray"
|
|
|
android:minHeight="108dp"
|
|
@@ -102,155 +106,31 @@
|
|
|
</RelativeLayout>
|
|
|
</LinearLayout>
|
|
|
|
|
|
- <RadioGroup
|
|
|
- android:id="@+id/rg_wdhlx"
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
+ android:id="@+id/rv_wdhlx"
|
|
|
+ android:paddingLeft="12dp"
|
|
|
+ android:paddingRight="12dp"
|
|
|
android:background="@drawable/shape_wdh_white"
|
|
|
- android:orientation="vertical">
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_wdh_jj"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:checked="true"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="拒接/未接通"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_wdh_kh"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="空号"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_wdh_bzxq"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="不在本辖区致无法联系"
|
|
|
- android:textSize="14sp" />
|
|
|
- </RadioGroup>
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
|
|
|
- <RadioGroup
|
|
|
- android:id="@+id/rg_ydhlx"
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:background="@drawable/shape_ydh_white"
|
|
|
- android:orientation="vertical"
|
|
|
- android:visibility="gone">
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_sddx"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:checked="true"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="接到欺诈短信"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_wsddx"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="未接到欺诈短信"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_tdmh"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="事主表述/态度模糊"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_wfkxx"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="事主未反馈任何信息"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_tdmh_jm"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="预警对象表达/态度模糊,需见面劝阻"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_wfk_jm"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="预警对象未反馈任何信息,需见面劝阻"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_yba"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="预警对象已被骗报案,不需见面劝阻"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_sjyhkhbf"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="预警手机号码非预警银行账户开户人"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
- <RadioButton
|
|
|
- android:id="@+id/rb_ydh_ydhqz_jm"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="40dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:button="@drawable/selector_radio"
|
|
|
- android:paddingHorizontal="5dp"
|
|
|
- android:text="预警对象已经电话劝阻,还需见面劝阻"
|
|
|
- android:textSize="14sp" />
|
|
|
-
|
|
|
-
|
|
|
- </RadioGroup>
|
|
|
+ android:visibility="gone"
|
|
|
+ android:paddingLeft="12dp"
|
|
|
+ android:paddingRight="12dp"
|
|
|
+ android:id="@+id/rv_ydhlx"
|
|
|
+ android:background="@drawable/shape_wdh_white"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
|
- android:visibility="gone"
|
|
|
android:id="@+id/ll_yjdh"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_marginLeft="16dp"
|
|
|
android:layout_marginTop="12dp"
|
|
|
+ android:visibility="gone"
|
|
|
android:layout_marginRight="16dp"
|
|
|
android:background="@drawable/white_shape"
|
|
|
android:minHeight="148dp"
|
|
@@ -279,7 +159,8 @@
|
|
|
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="50dp">
|
|
|
+ android:minHeight="50dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
<TextView
|
|
|
android:id="@+id/tv_bt"
|
|
@@ -301,10 +182,20 @@
|
|
|
android:textColor="#666"
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:paddingLeft="12dp"
|
|
|
+ android:id="@+id/rv_fkjg"
|
|
|
+ android:layout_toRightOf="@id/tv_fk"
|
|
|
+ android:gravity="center_vertical"/>
|
|
|
+
|
|
|
<RadioGroup
|
|
|
android:id="@+id/rg_fk"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent"
|
|
|
+ android:visibility="gone"
|
|
|
android:layout_toRightOf="@id/tv_fk"
|
|
|
android:gravity="center_vertical"
|
|
|
android:orientation="horizontal">
|
|
@@ -353,13 +244,15 @@
|
|
|
|
|
|
<RelativeLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="50dp">
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
<RelativeLayout
|
|
|
android:id="@+id/rl_xtzs"
|
|
|
android:layout_width="wrap_content"
|
|
|
- android:layout_height="match_parent"
|
|
|
+ android:layout_height="50dp"
|
|
|
+ android:visibility="visible"
|
|
|
android:layout_centerInParent="true"
|
|
|
+ android:gravity="center"
|
|
|
android:layout_marginLeft="5dp"
|
|
|
android:layout_marginRight="12dp">
|
|
|
|
|
@@ -380,14 +273,664 @@
|
|
|
android:layout_toRightOf="@id/tv_xtts"
|
|
|
android:src="@drawable/btn_unfold_gray" />
|
|
|
</RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/layout_more"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="收集涉诈信息"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_szlx"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="请选择涉诈类型"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_szlx"
|
|
|
+ android:src="@mipmap/btn_next_gray" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="是否报警"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/rg_bj_no"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:checked="true"
|
|
|
+ android:paddingRight="12dp"
|
|
|
+ android:button="@drawable/selector_radio"
|
|
|
+ android:paddingHorizontal="4dp"
|
|
|
+ android:text="否"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/rg_bj_yes"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginLeft="24dp"
|
|
|
+ android:button="@drawable/selector_radio"
|
|
|
+ android:paddingHorizontal="4dp"
|
|
|
+ android:text="是"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ </RadioGroup>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="反馈劝阻金额"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/et_fkqzje"
|
|
|
+ android:inputType="numberDecimal"
|
|
|
+ android:gravity="center_vertical|right"
|
|
|
+ android:hint="请输入反馈劝阻金额"
|
|
|
+ android:textColorHint="#999999"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:background="@null"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="150dp"
|
|
|
+ android:layout_marginRight="12dp"/>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="被骗金额"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:inputType="numberDecimal"
|
|
|
+ android:gravity="center_vertical|right"
|
|
|
+ android:hint="请输入被骗金额"
|
|
|
+ android:id="@+id/et_bpje"
|
|
|
+ android:textColorHint="#999999"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:background="@null"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="150dp"
|
|
|
+ android:layout_marginRight="12dp"/>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="是否需要回访"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <RadioGroup
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/rg_hf_no"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:checked="true"
|
|
|
+ android:paddingRight="12dp"
|
|
|
+ android:button="@drawable/selector_radio"
|
|
|
+ android:paddingHorizontal="4dp"
|
|
|
+ android:text="否"
|
|
|
+ android:textSize="14sp" />
|
|
|
+ <RadioButton
|
|
|
+ android:id="@+id/rg_hf_yes"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="40dp"
|
|
|
+ android:layout_marginLeft="24dp"
|
|
|
+ android:button="@drawable/selector_radio"
|
|
|
+ android:paddingHorizontal="4dp"
|
|
|
+ android:text="是"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ </RadioGroup>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="诈骗类型"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_zplx"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="请选择诈骗类型"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_zplx"
|
|
|
+ android:src="@mipmap/btn_next_gray" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="受害人信息"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:id="@+id/layout_add_shr"
|
|
|
+ android:gravity="center_vertical|right"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="21dp"
|
|
|
+ android:layout_height="21dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:src="@drawable/icon_plus_blue" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="20dp"
|
|
|
+ android:layout_marginLeft="1dp"
|
|
|
+ android:text="添加受害人"
|
|
|
+ android:textColor="#ff106dff"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/rv_shr"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="16dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="反馈说明"
|
|
|
+ android:textColor="#ff666666"
|
|
|
+ android:textSize="14sp"
|
|
|
+ />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:minHeight="108dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="@drawable/bg_shape_f5f5f5_corner6"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:layout_height="108dp">
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:background="@null"
|
|
|
+ android:textColor="#ff111111"
|
|
|
+ android:gravity="start"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:textColorHint="#bebebe"
|
|
|
+ android:hint="请描述具体情况,非必填"
|
|
|
+ android:id="@+id/et_fksm"
|
|
|
+ android:layout_marginTop="13dp"
|
|
|
+ android:layout_marginBottom="23dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_alignParentBottom="true"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginBottom="7dp"
|
|
|
+ android:layout_marginRight="7dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="0"
|
|
|
+ android:id="@+id/tv_fksm_count"
|
|
|
+ android:textColor="#ffbebebe"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="/200"
|
|
|
+ android:textColor="#ffbebebe"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:id="@+id/layout_jmjg"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_jg_bt"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="#FF1D1D"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_jg_bt"
|
|
|
+ android:text="见面结果"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_jmjg"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="请选择见面结果"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_jmjg"
|
|
|
+ android:src="@mipmap/btn_next_gray" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/layout_wfjmfj"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="#FF1D1D"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_jg_bt"
|
|
|
+ android:text="上传无法见面附件(800kb以内)"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="101dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:background="@drawable/bg_shape_stroke1_cccccc_corner4"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_height="101dp">
|
|
|
+
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="24dp"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:background="@drawable/icon_camera"
|
|
|
+ android:layout_height="24dp"/>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:text="上传材料"
|
|
|
+ android:layout_centerHorizontal="true"
|
|
|
+ android:layout_marginTop="56dp"
|
|
|
+ android:textColor="#ffcccccc"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_height="wrap_content"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:id="@+id/iv_camera"
|
|
|
+ android:layout_height="match_parent"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="24dp"
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
+ android:id="@+id/iv_delete"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:background="@drawable/icon_delete"
|
|
|
+ android:layout_marginLeft="85dp"
|
|
|
+ android:layout_height="24dp"/>
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_dz_bt"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="#FF1D1D"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_dz_bt"
|
|
|
+ android:text="见面地址"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:id="@+id/layout_jmdz"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_jmdz"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="80dp"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="请选择省、市、区、街道"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_jmdz"
|
|
|
+ android:src="@mipmap/btn_next_gray" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_xz_bt"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:text="*"
|
|
|
+ android:textColor="#FF1D1D"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_xz_bt"
|
|
|
+ android:text="详细地址"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:gravity="center_vertical|right"
|
|
|
+ android:hint="请输入小区、写字楼、门牌号等"
|
|
|
+ android:id="@+id/et_xxdz"
|
|
|
+ android:textColorHint="#999999"
|
|
|
+ android:textColor="#999999"
|
|
|
+ android:background="@null"
|
|
|
+ android:textSize="14sp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="80dp"
|
|
|
+ android:layout_marginRight="12dp"/>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
</RelativeLayout>
|
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="154dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
android:layout_marginLeft="16dp"
|
|
|
android:layout_marginTop="12dp"
|
|
|
+
|
|
|
+ android:id="@+id/layout_smyj"
|
|
|
android:layout_marginRight="16dp"
|
|
|
android:background="@drawable/white_shape"
|
|
|
android:orientation="vertical">
|
|
@@ -404,87 +947,126 @@
|
|
|
android:text="需上门预警"
|
|
|
android:textColor="#111111"
|
|
|
android:textSize="16sp" />
|
|
|
- </RelativeLayout>
|
|
|
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:layout_marginRight="12dp"
|
|
|
- android:background="#E7E7E7" />
|
|
|
+ <androidx.appcompat.widget.SwitchCompat
|
|
|
+ android:id="@+id/switch_smyj"
|
|
|
+ android:layout_width="60dp"
|
|
|
+ android:layout_height="26dp"
|
|
|
+ android:visibility="gone"
|
|
|
+ android:thumb="@drawable/switch_thumb"
|
|
|
+ app:track="@drawable/switch_track_style"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginRight="12dp" />
|
|
|
+ </RelativeLayout>
|
|
|
|
|
|
- <RelativeLayout
|
|
|
+ <LinearLayout
|
|
|
android:layout_width="match_parent"
|
|
|
- android:layout_height="50dp">
|
|
|
+ android:id="@+id/layout_checked_xsmyj"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
android:layout_marginLeft="12dp"
|
|
|
- android:text="归属单位"
|
|
|
- android:textColor="#666"
|
|
|
- android:textSize="14sp" />
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
|
|
|
- <TextView
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_marginRight="26dp"
|
|
|
- android:text="长春市南关分局红旗街派出所"
|
|
|
- android:textColor="#666"
|
|
|
- android:textSize="14sp" />
|
|
|
- </RelativeLayout>
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
|
|
|
- <View
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="1dp"
|
|
|
- android:layout_marginLeft="12dp"
|
|
|
- android:layout_marginRight="12dp"
|
|
|
- android:background="#E7E7E7" />
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="归属单位"
|
|
|
+ android:id="@+id/tv_gsdw_left"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
|
|
|
- <RelativeLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="50dp">
|
|
|
|
|
|
- <TextView
|
|
|
- android:id="@+id/tv"
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_centerVertical="true"
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_toRightOf="@id/tv_gsdw_left"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:gravity="right"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_pcs"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="请选择归属单位"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_pcs"
|
|
|
+ android:src="@mipmap/btn_next_gray" />
|
|
|
+ </RelativeLayout>
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
android:layout_marginLeft="12dp"
|
|
|
- android:text="上门民警"
|
|
|
- android:textColor="#666"
|
|
|
- android:textSize="14sp" />
|
|
|
+ android:layout_marginRight="12dp"
|
|
|
+ android:background="#E7E7E7" />
|
|
|
|
|
|
<RelativeLayout
|
|
|
- android:layout_width="wrap_content"
|
|
|
- android:layout_height="match_parent"
|
|
|
- android:layout_alignParentRight="true"
|
|
|
- android:layout_marginLeft="5dp"
|
|
|
- android:layout_marginRight="12dp">
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="50dp">
|
|
|
|
|
|
<TextView
|
|
|
- android:id="@+id/tv_mj"
|
|
|
+ android:id="@+id/tv"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
android:layout_centerVertical="true"
|
|
|
android:layout_marginLeft="12dp"
|
|
|
- android:text="请选择上门民警"
|
|
|
+ android:text="上门民警"
|
|
|
android:textColor="#666"
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
- <ImageView
|
|
|
- android:layout_width="15dp"
|
|
|
- android:layout_height="15dp"
|
|
|
- android:layout_centerVertical="true"
|
|
|
- android:layout_toRightOf="@id/tv_mj"
|
|
|
- android:src="@mipmap/btn_next_gray" />
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:layout_marginLeft="5dp"
|
|
|
+ android:layout_marginRight="12dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_mj"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginLeft="12dp"
|
|
|
+ android:text="请选择上门民警"
|
|
|
+ android:textColor="#666"
|
|
|
+ android:textSize="14sp" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="15dp"
|
|
|
+ android:layout_height="15dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_toRightOf="@id/tv_mj"
|
|
|
+ android:src="@mipmap/btn_next_gray" />
|
|
|
+ </RelativeLayout>
|
|
|
</RelativeLayout>
|
|
|
- </RelativeLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
</LinearLayout>
|
|
|
</LinearLayout>
|
|
|
- </ScrollView>
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
|
|
|
-</LinearLayout>
|
|
|
+</RelativeLayout>
|