fragment_nix.xml 975 B

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:layout_width="match_parent"
  5. android:layout_height="match_parent"
  6. tools:context=".fragments.NixFragment">
  7. <RelativeLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent">
  10. <androidx.swiperefreshlayout.widget.SwipeRefreshLayout
  11. android:id="@+id/swiperefresh"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent">
  14. <androidx.recyclerview.widget.RecyclerView
  15. android:id="@+id/recycler_view"
  16. android:layout_width="match_parent"
  17. android:layout_height="match_parent">
  18. </androidx.recyclerview.widget.RecyclerView>
  19. </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>
  20. </RelativeLayout>
  21. </FrameLayout>