activity_select_stu.xml
1.47 KB
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
<?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"
android:background="#F4F6F8"
>
<View
android:id="@+id/view_1"
android:layout_width="match_parent"
android:layout_height="44dp"
app:layout_constraintTop_toTopOf="parent"
android:background="@android:color/white"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="选择学生"
android:textColor="#333333"
android:textSize="18dp"
app:layout_constraintLeft_toLeftOf="@id/view_1"
app:layout_constraintRight_toRightOf="@id/view_1"
app:layout_constraintTop_toTopOf="@id/view_1"
app:layout_constraintBottom_toBottomOf="@id/view_1"
/>
<Button
android:layout_width="180dp"
android:layout_height="40dp"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:layout_marginTop="500dp"
android:background="@drawable/bg_solid_btn"
android:text="确认"
android:textColor="#FFFFFF"
android:textSize="16dp"
/>
</androidx.constraintlayout.widget.ConstraintLayout>