完成任务说明

This commit is contained in:
md
2021-05-27 18:00:26 +08:00
parent cea2d6c31c
commit 0a1afb7ffb
30 changed files with 1286 additions and 71 deletions

View File

@@ -0,0 +1,42 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="100dp"
xmlns:app="http://schemas.android.com/apk/res-auto">
<ImageView
android:layout_width="40dp"
android:layout_height="40dp"
android:id="@+id/iv_tas_capacity"
android:layout_marginLeft="10dp"
android:scaleType="fitCenter"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
/>
<TextView
android:id="@+id/tas_capacity_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="111111111"
android:textSize="16sp"
android:textStyle="bold"
app:layout_constraintTop_toTopOf="@id/iv_tas_capacity"
app:layout_constraintBottom_toBottomOf="@id/iv_tas_capacity"
app:layout_constraintLeft_toRightOf="@id/iv_tas_capacity"
android:layout_marginLeft="10dp"/>
<TextView
android:id="@+id/tv_through"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="成绩:通过"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_marginRight="8dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="去测评>"
app:layout_constraintTop_toBottomOf="@id/tv_through"
app:layout_constraintRight_toRightOf="@id/tv_through"/>
</androidx.constraintlayout.widget.ConstraintLayout>