fragment_manga_chapters.xml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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. <android.support.v4.widget.SwipeRefreshLayout
  10. android:id="@+id/swipe_refresh"
  11. android:layout_width="match_parent"
  12. android:layout_height="match_parent"
  13. android:layout_above="@+id/toolbar_bottom"
  14. android:orientation="vertical">
  15. <android.support.v7.widget.RecyclerView
  16. android:id="@+id/recycler"
  17. android:layout_width="match_parent"
  18. android:layout_height="match_parent"
  19. android:layout_marginLeft="16dp"
  20. android:layout_marginRight="16dp"
  21. android:descendantFocusability="blocksDescendants"
  22. tools:listitem="@layout/item_chapter">
  23. </android.support.v7.widget.RecyclerView>
  24. </android.support.v4.widget.SwipeRefreshLayout>
  25. <android.support.design.widget.FloatingActionButton
  26. android:id="@+id/fab"
  27. style="@style/Theme.Widget.FAB"
  28. app:layout_anchor="@id/recycler"
  29. app:srcCompat="@drawable/ic_play_arrow_white_24dp"/>
  30. </android.support.design.widget.CoordinatorLayout>