jg_activity_message_box.xml 1.1 KB

1234567891011121314151617181920212223242526272829
  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. app:srlEnableLoadMore="true"
  15. app:srlEnableRefresh="true"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent">
  18. <androidx.recyclerview.widget.RecyclerView
  19. android:id="@+id/recyclerView"
  20. android:layout_width="match_parent"
  21. android:layout_height="match_parent"
  22. android:overScrollMode="never"
  23. android:scrollbars="none" />
  24. </com.scwang.smart.refresh.layout.SmartRefreshLayout>
  25. </LinearLayout>