|
@@ -0,0 +1,275 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<androidx.constraintlayout.widget.ConstraintLayout 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:id="@+id/container"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ tools:context=".MainActivity">
|
|
|
|
+
|
|
|
|
+ <ScrollView
|
|
|
|
+ android:id="@+id/scrollView2"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/info_head"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ android:contentDescription="info_head"
|
|
|
|
+ app:srcCompat="@drawable/info_head" />
|
|
|
|
+
|
|
|
|
+ <FrameLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent">
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/imageView3"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginStart="20dp"
|
|
|
|
+ android:layout_marginEnd="20dp"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ app:srcCompat="@drawable/info_second" />
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_marginStart="40dp"
|
|
|
|
+ android:layout_marginEnd="40dp"
|
|
|
|
+ android:orientation="vertical">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/textView7"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:text="姓名:"
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
+ android:textSize="13sp" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/info_id"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:text="证件号:"
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
+ android:textSize="13sp" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/info_region"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:text="地区:"
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
+ android:textSize="13sp" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/info_address"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:text="详细地址:"
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
+ android:textSize="13sp" />
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/info_work"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_weight="1"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:text="行业:"
|
|
|
|
+ android:textColor="@color/black"
|
|
|
|
+ android:textSize="13sp" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ <TableLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_marginStart="40dp"
|
|
|
|
+ android:layout_marginEnd="40dp"
|
|
|
|
+ android:gravity="center_vertical"
|
|
|
|
+ android:stretchColumns="*">
|
|
|
|
+
|
|
|
|
+ <TableRow
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="0dp"
|
|
|
|
+ android:layout_weight="1">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_gravity="right"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/name"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
+ android:gravity="right"
|
|
|
|
+ android:textSize="13sp"
|
|
|
|
+ android:text="习**"
|
|
|
|
+ tools:ignore="RtlHardcoded" />
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/imageView4"
|
|
|
|
+ android:layout_width="89dp"
|
|
|
|
+ android:layout_height="24dp"
|
|
|
|
+ android:layout_gravity="center"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ app:srcCompat="@drawable/info_verified" />
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ </TableRow>
|
|
|
|
+
|
|
|
|
+ <TableRow
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_gravity="right"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/id"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
+ android:gravity="right"
|
|
|
|
+ android:text="1****************7"
|
|
|
|
+ android:textSize="13sp"
|
|
|
|
+ tools:ignore="RtlHardcoded" />
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ </TableRow>
|
|
|
|
+
|
|
|
|
+ <TableRow
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_gravity="right"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/region"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
+ android:gravity="right"
|
|
|
|
+ android:text="陕西省.渭南市.富平县"
|
|
|
|
+ android:textSize="13sp"
|
|
|
|
+ tools:ignore="RtlHardcoded" />
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/more_info_1"
|
|
|
|
+ android:layout_width="24dp"
|
|
|
|
+ android:layout_height="24dp"
|
|
|
|
+ android:layout_gravity="end|center"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ app:srcCompat="@drawable/info_more" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ </TableRow>
|
|
|
|
+
|
|
|
|
+ <TableRow
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_gravity="right"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/address"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
+ android:gravity="right"
|
|
|
|
+ android:textSize="13sp"
|
|
|
|
+ android:text="请填写详细地址"
|
|
|
|
+ tools:ignore="RtlHardcoded" />
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/more_info_2"
|
|
|
|
+ android:layout_width="24dp"
|
|
|
|
+ android:layout_height="24dp"
|
|
|
|
+ android:layout_gravity="end|center"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ app:srcCompat="@drawable/info_more" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ </TableRow>
|
|
|
|
+ <TableRow
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_weight="1">
|
|
|
|
+
|
|
|
|
+ <LinearLayout
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
+ android:layout_gravity="right"
|
|
|
|
+ android:orientation="horizontal">
|
|
|
|
+
|
|
|
|
+ <TextView
|
|
|
|
+ android:id="@+id/work"
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
|
+ android:gravity="right"
|
|
|
|
+ android:text="请选择"
|
|
|
|
+ android:textSize="13sp"
|
|
|
|
+ tools:ignore="RtlHardcoded" />
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/more_info_3"
|
|
|
|
+ android:layout_width="24dp"
|
|
|
|
+ android:layout_height="24dp"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ android:layout_gravity="end|center"
|
|
|
|
+ app:srcCompat="@drawable/info_more" />
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ </TableRow>
|
|
|
|
+ </TableLayout>
|
|
|
|
+
|
|
|
|
+ </FrameLayout>
|
|
|
|
+
|
|
|
|
+ <ImageView
|
|
|
|
+ android:id="@+id/imageView8"
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
+ android:adjustViewBounds="true"
|
|
|
|
+ app:srcCompat="@drawable/info_third" />
|
|
|
|
+
|
|
|
|
+ </LinearLayout>
|
|
|
|
+
|
|
|
|
+ </ScrollView>
|
|
|
|
+
|
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|