jg_activity_message_box.xml 1016 B

123456789101112131415161718192021222324252627
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:app="http://schemas.android.com/apk/res-auto"
  4. xmlns:tool="http://schemas.android.com/tools"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@color/white"
  8. android:orientation="vertical">
  9. <include
  10. android:id="@+id/toolbar_include"
  11. layout="@layout/common_toolbar_layout" />
  12. <com.scwang.smart.refresh.layout.SmartRefreshLayout
  13. android:id="@+id/refreshLayout"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent">
  16. <androidx.recyclerview.widget.RecyclerView
  17. android:id="@+id/recyclerView"
  18. android:layout_width="match_parent"
  19. android:layout_height="match_parent"
  20. android:overScrollMode="never"
  21. android:scrollbars="none" />
  22. </com.scwang.smart.refresh.layout.SmartRefreshLayout>
  23. </LinearLayout>