You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
4.0 KiB
XML
110 lines
4.0 KiB
XML
|
2 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<layout 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">
|
||
|
|
|
||
|
|
|
||
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
tools:context=".RepairActivity">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/linearLayout"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="45dp"
|
||
|
|
android:layout_marginTop="12dp"
|
||
|
|
android:layout_marginEnd="4dp"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toTopOf="parent">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
style="@style/text_style1"
|
||
|
|
android:layout_width="90dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:text="产品条码:" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/san_text"
|
||
|
|
style="@style/san_text_style"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/textView"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="20dp"
|
||
|
|
android:text="缺陷详情"
|
||
|
|
android:textColor="@color/design_default_color_error"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />
|
||
|
|
|
||
|
|
<androidx.recyclerview.widget.RecyclerView
|
||
|
|
android:id="@+id/recyclerView"
|
||
|
|
android:layout_width="409dp"
|
||
|
|
android:layout_height="315dp"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintStart_toStartOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/textView" />
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:id="@+id/linearLayout2"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="48dp"
|
||
|
|
android:layout_marginTop="12dp"
|
||
|
|
android:layout_marginEnd="4dp"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/recyclerView">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
style="@style/text_style1"
|
||
|
|
android:layout_width="90dp"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:background="@color/grey"
|
||
|
|
android:text="处置措施:" />
|
||
|
|
|
||
|
|
<Spinner
|
||
|
|
android:id="@+id/check_spinner1"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent"
|
||
|
|
android:entries="@array/eg"
|
||
|
|
android:spinnerMode="dropdown"
|
||
|
|
android:textAlignment="center" />
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="55dp"
|
||
|
|
android:layout_margin="20dp"
|
||
|
|
app:layout_constraintTop_toBottomOf="@+id/linearLayout2">
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/button2"
|
||
|
|
style="@style/button_true_style"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="48dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:layout_marginEnd="10dp"
|
||
|
|
android:text="提交" />
|
||
|
|
|
||
|
|
<Button
|
||
|
|
android:id="@+id/button"
|
||
|
|
style="@style/button_true_style"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="48dp"
|
||
|
|
android:layout_marginStart="10dp"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:text="提交" />
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</layout>
|