updates_controller.xml 1.1 KB

12345678910111213141516171819202122232425262728
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.swiperefreshlayout.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. xmlns:tools="http://schemas.android.com/tools"
  4. android:id="@+id/swipe_refresh"
  5. android:layout_width="match_parent"
  6. android:layout_height="match_parent">
  7. <FrameLayout
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent">
  10. <androidx.recyclerview.widget.RecyclerView
  11. android:id="@+id/recycler"
  12. android:layout_width="match_parent"
  13. android:layout_height="match_parent"
  14. android:descendantFocusability="blocksDescendants"
  15. tools:listitem="@layout/updates_item" />
  16. <eu.kanade.tachiyomi.widget.EmptyView
  17. android:id="@+id/empty_view"
  18. android:layout_width="wrap_content"
  19. android:layout_height="wrap_content"
  20. android:layout_gravity="center"
  21. android:visibility="gone" />
  22. </FrameLayout>
  23. </androidx.swiperefreshlayout.widget.SwipeRefreshLayout>