32 行
1.4 KiB
XML
32 行
1.4 KiB
XML
|
|
<?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:textSize="20sp"
|
|||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|||
|
|
app:layout_constraintStart_toStartOf="parent"
|
|||
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|||
|
|
<WebView
|
|||
|
|
android:id="@+id/content"
|
|||
|
|
android:layout_width="0dp"
|
|||
|
|
android:layout_height="0dp"
|
|||
|
|
android:layout_marginTop="10dp"
|
|||
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|||
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|||
|
|
app:layout_constraintStart_toStartOf="parent"
|
|||
|
|
app:layout_constraintTop_toBottomOf="@+id/tvTaskHeader" />
|
|||
|
|
|
|||
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|||
|
|
</layout>
|