|
@@ -0,0 +1,55 @@
|
|
|
+<?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">
|
|
|
+ <include
|
|
|
+ android:id="@+id/toolbar_include"
|
|
|
+ layout="@layout/common_toolbar_layout" />
|
|
|
+
|
|
|
+ <FrameLayout
|
|
|
+ android:layout_marginEnd="14dp"
|
|
|
+ android:layout_marginStart="14dp"
|
|
|
+ android:id="@+id/fl_setting"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="36dp"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:background="@drawable/shape_ffffff_6dp_border_e3efed_1dp"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/toolbar_include">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:drawableStart="@drawable/icon_create_vip_course_options"
|
|
|
+ android:drawablePadding="4dp"
|
|
|
+ android:text="添加课程方案"
|
|
|
+ android:textColor="@color/color_333333"
|
|
|
+ android:textSize="@dimen/sp_15" />
|
|
|
+ </FrameLayout>
|
|
|
+
|
|
|
+ <com.scwang.smart.refresh.layout.SmartRefreshLayout
|
|
|
+ android:id="@+id/refreshLayout"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/fl_setting"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:srlEnableLoadMore="false">
|
|
|
+
|
|
|
+
|
|
|
+ <androidx.recyclerview.widget.RecyclerView
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ android:id="@+id/recyclerView"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/fl_setting"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="12dp"
|
|
|
+ android:overScrollMode="never"
|
|
|
+ android:scrollbars="none" />
|
|
|
+ </com.scwang.smart.refresh.layout.SmartRefreshLayout>
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|