|
@@ -0,0 +1,65 @@
|
|
|
|
|
+<?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"
|
|
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
+ android:id="@+id/main"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="match_parent"
|
|
|
|
|
+ android:background="@color/app_color_black">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/tvTaskHeader"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:text="130工序要求如下:"
|
|
|
|
|
+ android:textColor="#ff40FF5E"
|
|
|
|
|
+ android:background="@drawable/bg_item"
|
|
|
|
|
+ android:textSize="20sp"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/content"
|
|
|
|
|
+ android:layout_width="0dp"
|
|
|
|
|
+ android:background="@drawable/bg_item"
|
|
|
|
|
+ android:layout_height="300dp"
|
|
|
|
|
+ android:text="采用手工铺贴,按操作规程CD1442要求进行铺贴,将铺层信息填写在表SAMC 31-71《零件铺层信息、生产记录表》中,并扫描上传。 1)I型表面胶膜铺贴最大搭接6mm或对接最大间隙1.5mm。按投影线及工装余量刻线进行铺贴。 2)织物铺层的方向公差为±5°,铺贴中允许搭接13mm~25mm或对接间隙≤1.5mm,拼缝错开至少25mm,同向铺层之间可以每隔4层重复拼缝的错开位置。按投影线及工装余量刻线进行铺贴,加强层铺贴位置公差为投影位置±2.5mm。"
|
|
|
|
|
+ android:textColor="#ff40FF5E"
|
|
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
|
|
+ android:lineHeight="20sp"
|
|
|
|
|
+ android:textSize="16sp"
|
|
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tvTaskHeader" />
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/reject"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
|
+ android:textColor="#ff40FF5E"
|
|
|
|
|
+ android:background="@drawable/bg_item"
|
|
|
|
|
+ android:textSize="16sp"
|
|
|
|
|
+ android:paddingHorizontal="10dp"
|
|
|
|
|
+ android:paddingVertical="3dp"
|
|
|
|
|
+ android:text="驳回"
|
|
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/content" />
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/agree"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
|
|
+ android:textColor="#ff40FF5E"
|
|
|
|
|
+ android:background="@drawable/bg_item"
|
|
|
|
|
+ android:textSize="16sp"
|
|
|
|
|
+ android:paddingHorizontal="10dp"
|
|
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
|
|
+ android:paddingVertical="3dp"
|
|
|
|
|
+ android:text="同意"
|
|
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/reject"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/content" />
|
|
|
|
|
+
|
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
+</layout>
|