罗明文
2024-06-16 9673bcd57c6100ad9fdfbee728ef078104511fc1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<?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="match_parent"
    xmlns:app="http://schemas.android.com/apk/res-auto">
 
        <TextView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/tv_add_student"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            android:text="添加人员"
            android:textSize="14sp"
            android:layout_marginTop="13dp"
            android:layout_marginEnd="15dp"
            android:drawablePadding="6dp"
            android:paddingVertical="10dp"
            android:drawableEnd="@mipmap/ic_add"/>
        <TextView
            android:id="@+id/tv_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            app:layout_constraintBaseline_toBaselineOf="@id/tv_add_student"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginStart="14dp"
            android:textColor="@color/textColor"
            android:textSize="16sp"
            android:textStyle="bold"
            android:text="活动人员"/>
        <androidx.recyclerview.widget.RecyclerView
            android:id="@+id/rv_student"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_marginBottom="10dp"
            app:layout_constraintTop_toBottomOf="@id/tv_add_student"
            app:layout_constraintBottom_toTopOf="@id/tv_action"/>
        <TextView
            android:id="@+id/tv_action"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            style="@style/style_btn_action"
            android:visibility="gone"
            android:text="确认"
            app:layout_constraintBottom_toBottomOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            android:layout_marginBottom="23dp"
            app:layout_constraintEnd_toEndOf="parent"
            android:paddingHorizontal="80dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>