2015-10-17 07:51:54 -04:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2015-11-24 12:45:53 -05:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-11-30 12:45:45 -05:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical">
|
2015-10-17 07:51:54 -04:00
|
|
|
|
2015-10-18 13:18:50 -04:00
|
|
|
<android.support.v4.widget.SwipeRefreshLayout
|
|
|
|
android:id="@+id/swipe_refresh"
|
2015-10-17 15:31:10 -04:00
|
|
|
android:layout_width="match_parent"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_height="match_parent"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:layout_above="@+id/toolbar_bottom"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:orientation="vertical">
|
2015-10-17 15:31:10 -04:00
|
|
|
|
2015-10-18 13:18:50 -04:00
|
|
|
<android.support.v7.widget.RecyclerView
|
2015-11-24 12:45:53 -05:00
|
|
|
android:id="@+id/chapter_list"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
tools:listitem="@layout/item_chapter">
|
2015-10-18 13:18:50 -04:00
|
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
|
|
|
|
|
|
</android.support.v4.widget.SwipeRefreshLayout>
|
2015-10-17 15:31:10 -04:00
|
|
|
|
2015-11-30 12:45:45 -05:00
|
|
|
|
|
|
|
<android.support.v7.widget.Toolbar
|
|
|
|
android:id="@+id/toolbar_bottom"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_width="match_parent"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:layout_height="?attr/actionBarSize"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_alignParentBottom="true"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:background="@color/colorPrimary"
|
|
|
|
android:elevation="4dp"
|
|
|
|
android:gravity="top|start"
|
|
|
|
android:theme="@style/ThemeOverlay.AppTheme.Dark"
|
|
|
|
app:popupTheme="@style/AppTheme.Popup">
|
|
|
|
|
|
|
|
<android.support.v7.widget.ActionMenuView
|
|
|
|
android:id="@+id/bottom_menu"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="?attr/actionBarSize"/>
|
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
|
2015-11-24 12:45:53 -05:00
|
|
|
|
|
|
|
</RelativeLayout>
|