activity_base.xml 872 B

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <layout xmlns:android="http://schemas.android.com/apk/res/android">
  3. <LinearLayout
  4. android:id="@+id/baseContainer"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent"
  7. android:background="@android:color/white"
  8. android:orientation="vertical">
  9. <com.scwang.smartrefresh.layout.SmartRefreshLayout
  10. android:id="@+id/smartRefreshLayout"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent">
  13. <LinearLayout
  14. android:id="@+id/llyt_content"
  15. android:layout_width="match_parent"
  16. android:layout_height="match_parent"
  17. android:orientation="vertical" />
  18. </com.scwang.smartrefresh.layout.SmartRefreshLayout>
  19. </LinearLayout>
  20. </layout>