source_controller.xml 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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. <LinearLayout
  7. android:id="@+id/catalogue_view"
  8. android:layout_width="match_parent"
  9. android:layout_height="match_parent"
  10. android:orientation="vertical"
  11. tools:context=".ui.browse.source.browse.BrowseSourceController">
  12. <FrameLayout
  13. android:id="@+id/progress"
  14. android:layout_width="match_parent"
  15. android:layout_height="match_parent"
  16. android:visibility="gone"
  17. tools:visibility="visible">
  18. <com.google.android.material.progressindicator.CircularProgressIndicator
  19. android:layout_width="wrap_content"
  20. android:layout_height="wrap_content"
  21. android:layout_gravity="center"
  22. android:indeterminate="true" />
  23. </FrameLayout>
  24. </LinearLayout>
  25. <eu.kanade.tachiyomi.widget.EmptyView
  26. android:id="@+id/empty_view"
  27. android:layout_width="match_parent"
  28. android:layout_height="match_parent"
  29. android:gravity="center"
  30. android:visibility="gone" />
  31. </FrameLayout>