|
|
@@ -0,0 +1,93 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<layout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="@color/app_color_black">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/title"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="58dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="本次任务应拍摄3张,实际拍摄0张"
|
|
|
+ android:textColor="#4AFE59"
|
|
|
+ android:textSize="24sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/photoContainer"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="170dp"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="28dp"
|
|
|
+ android:layout_marginEnd="24dp"
|
|
|
+ android:background="@drawable/bg_item"
|
|
|
+ android:gravity="center"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:paddingHorizontal="18dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/title">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/photo1"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="130dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="#FF3F3F3F"
|
|
|
+ android:scaleType="centerCrop" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/photo2"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="130dp"
|
|
|
+ android:layout_marginStart="14dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="#FF3F3F3F"
|
|
|
+ android:scaleType="centerCrop" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/photo3"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="130dp"
|
|
|
+ android:layout_marginStart="14dp"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:background="#FF3F3F3F"
|
|
|
+ android:scaleType="centerCrop" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/baseRecyclerView"
|
|
|
+ android:layout_width="210dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:overScrollMode="never"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/photoContainer" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/hint"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="24dp"
|
|
|
+ android:layout_marginTop="24dp"
|
|
|
+ android:layout_marginEnd="24dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:lineSpacingExtra="6dp"
|
|
|
+ android:text="单击或语音输入“补充照片”,继续拍摄图片 单击或语音输入“确认提交”,提交任务结果至天镜系统"
|
|
|
+ android:textColor="#4AFE59"
|
|
|
+ android:textSize="14sp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/baseRecyclerView" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+</layout>
|