|
@@ -0,0 +1,166 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
+ xmlns:tools="http://schemas.android.com/tools"
|
|
|
+ android:id="@+id/fl_root"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:background="#60000000"
|
|
|
+ android:overScrollMode="never"
|
|
|
+ android:scrollbars="none">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/fl_container"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:background="@drawable/bg_white_bottom_20dp"
|
|
|
+ android:paddingTop="18dp"
|
|
|
+ android:paddingBottom="18dp">
|
|
|
+
|
|
|
+ <androidx.core.widget.NestedScrollView
|
|
|
+ android:id="@+id/sv_top"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintHeight_max="401dp"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_icon"
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="@dimen/dp_11"
|
|
|
+ android:layout_marginStart="@dimen/dp_16"
|
|
|
+ android:background="@drawable/btn_green_stu_line_shape"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/tv_title1"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/tv_title1" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_title1"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="6dp"
|
|
|
+ android:text="课程状态"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintLeft_toRightOf="@+id/iv_icon"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
+ tools:visibility="visible" />
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/recyclerView1"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:overScrollMode="never"
|
|
|
+ android:paddingStart="9dp"
|
|
|
+ android:paddingEnd="9dp"
|
|
|
+ android:scrollbars="none"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_title1"
|
|
|
+ tools:visibility="visible" />
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.Group
|
|
|
+ android:id="@+id/group_one"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:visibility="visible"
|
|
|
+ app:constraint_referenced_ids="recyclerView1,tv_title1,iv_icon" />
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/iv_icon2"
|
|
|
+ android:layout_width="4dp"
|
|
|
+ android:layout_height="@dimen/dp_11"
|
|
|
+ android:layout_marginStart="@dimen/dp_16"
|
|
|
+ android:background="@drawable/btn_green_stu_line_shape"
|
|
|
+ app:layout_constraintBottom_toBottomOf="@+id/tv_title2"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/tv_title2" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_title2"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="6dp"
|
|
|
+ android:layout_marginTop="13dp"
|
|
|
+ android:text="声部"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ android:textStyle="bold"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintLeft_toRightOf="@+id/iv_icon2"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/recyclerView1"
|
|
|
+ app:layout_goneMarginTop="0dp"
|
|
|
+ tools:visibility="visible" />
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ android:id="@+id/recyclerView2"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="4dp"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:overScrollMode="never"
|
|
|
+ android:paddingStart="9dp"
|
|
|
+ android:paddingEnd="9dp"
|
|
|
+ android:scrollbars="none"
|
|
|
+ android:visibility="gone"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/tv_title2"
|
|
|
+ tools:visibility="visible" />
|
|
|
+
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.Group
|
|
|
+ android:id="@+id/group_two"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:visibility="visible"
|
|
|
+ app:constraint_referenced_ids="recyclerView2,tv_title2,iv_icon2" />
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+ </androidx.core.widget.NestedScrollView>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/view_line"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="1dp"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:background="@color/color_f2f2f2"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/sv_top" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_cancel"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="44dp"
|
|
|
+ android:layout_marginStart="13dp"
|
|
|
+ android:layout_marginTop="17dp"
|
|
|
+ android:background="@drawable/shape_border_dbdbdb_1dp_22dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="重置"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toLeftOf="@+id/tv_confirm"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/view_line" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/tv_confirm"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="44dp"
|
|
|
+ android:layout_marginStart="15dp"
|
|
|
+ android:layout_marginEnd="13dp"
|
|
|
+ android:background="@drawable/shape_2dc7aa_22dp"
|
|
|
+ android:gravity="center"
|
|
|
+ android:text="查询"
|
|
|
+ android:textColor="@color/white"
|
|
|
+ android:textSize="@dimen/sp_16"
|
|
|
+ android:textStyle="bold"
|
|
|
+ app:layout_constraintLeft_toRightOf="@+id/tv_cancel"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="@+id/tv_cancel" />
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+</FrameLayout>
|