<?xml version="1.0" encoding="utf-8"?>
|
<androidx.core.widget.NestedScrollView
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
android:layout_height="match_parent">
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical">
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="二维码注意事项"
|
android:textStyle="bold"
|
android:textSize="16sp"
|
android:layout_marginTop="15dp"
|
android:layout_marginStart="15dp"
|
android:textColor="@color/textColor"/>
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="8dp"
|
android:layout_marginHorizontal="15dp"
|
android:textSize="14sp"
|
android:id="@+id/tv_tip"/>
|
<androidx.recyclerview.widget.RecyclerView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:id="@+id/rv_student"
|
android:layout_marginTop="10dp"/>
|
</LinearLayout>
|
</androidx.core.widget.NestedScrollView>
|