choose_activity.xml
1.26 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
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#F4F6F8">
<TextView
android:id="@+id/tv_title"
android:layout_width="match_parent"
android:layout_height="44dp"
android:background="@color/white"
android:gravity="center"
android:text="选择学生"
android:textColor="#333333"
android:textSize="18sp" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recycle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/tv_confirm"
android:layout_below="@+id/tv_title"
android:layout_marginBottom="20dp" />
<TextView
android:id="@+id/tv_confirm"
android:layout_width="180dp"
android:layout_height="40dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="120dp"
android:background="@drawable/bg_solid_btn"
android:gravity="center"
android:text="确认"
android:textColor="@color/white"
android:textSize="16sp" />
</RelativeLayout>