fragment_manga_chapters.xml 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <android.support.design.widget.CoordinatorLayout
  3. xmlns:android="http://schemas.android.com/apk/res/android"
  4. xmlns:app="http://schemas.android.com/apk/res-auto"
  5. xmlns:tools="http://schemas.android.com/tools"
  6. android:layout_width="match_parent"
  7. android:layout_height="match_parent"
  8. android:orientation="vertical">
  9. <eu.kanade.tachiyomi.widget.RevealAnimationView
  10. android:id="@+id/reveal_view"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:background="?attr/colorAccent"
  14. android:elevation="5dp"
  15. android:visibility="invisible"
  16. />
  17. <android.support.v4.widget.SwipeRefreshLayout
  18. android:id="@+id/swipe_refresh"
  19. android:layout_width="match_parent"
  20. android:layout_height="match_parent"
  21. android:layout_above="@+id/toolbar_bottom"
  22. android:orientation="vertical">
  23. <android.support.v7.widget.RecyclerView
  24. android:id="@+id/recycler"
  25. android:layout_width="match_parent"
  26. android:layout_height="match_parent"
  27. android:layout_marginLeft="16dp"
  28. android:layout_marginRight="16dp"
  29. android:descendantFocusability="blocksDescendants"
  30. tools:listitem="@layout/item_chapter">
  31. </android.support.v7.widget.RecyclerView>
  32. </android.support.v4.widget.SwipeRefreshLayout>
  33. <android.support.design.widget.FloatingActionButton
  34. android:id="@+id/fab"
  35. style="@style/Theme.Widget.FAB"
  36. app:layout_anchor="@id/recycler"
  37. app:srcCompat="@drawable/ic_play_arrow_white_24dp"/>
  38. </android.support.design.widget.CoordinatorLayout>