2015-10-17 13:51:54 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical" android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
2015-10-18 19:18:50 +02:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
2015-10-17 21:31:10 +02:00
|
|
|
android:layout_width="match_parent"
|
2015-10-18 19:18:50 +02:00
|
|
|
android:layout_height="match_parent">
|
2015-10-17 21:31:10 +02:00
|
|
|
|
2015-10-18 19:18:50 +02:00
|
|
|
<android.support.v7.widget.RecyclerView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/chapter_list">
|
|
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2015-10-17 21:31:10 +02:00
|
|
|
|
2015-10-17 13:51:54 +02:00
|
|
|
</LinearLayout>
|