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: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"
|
2015-12-11 07:50:47 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-11-24 12:45:53 -05:00
|
|
|
android:layout_marginLeft="16dp"
|
|
|
|
android:layout_marginRight="16dp"
|
2015-12-01 12:16:55 -05:00
|
|
|
android:descendantFocusability="blocksDescendants"
|
2015-12-20 14:10:04 -05:00
|
|
|
android:background="@color/white"
|
2015-11-24 12:45:53 -05:00
|
|
|
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
|
|
|
|
2015-12-11 07:50:47 -05:00
|
|
|
<RelativeLayout
|
2015-11-30 12:45:45 -05:00
|
|
|
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"
|
2015-12-11 07:50:47 -05:00
|
|
|
android:paddingLeft="12dp"
|
|
|
|
android:paddingRight="12dp"
|
2015-11-30 12:45:45 -05:00
|
|
|
android:gravity="top|start"
|
2016-01-05 07:54:00 -05:00
|
|
|
android:theme="@style/AppTheme.Popup">
|
2015-12-11 07:50:47 -05:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_sort"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:title="@string/action_sort_up"
|
|
|
|
tools:src="@drawable/ic_expand_less_white_36dp"/>
|
2015-11-30 12:45:45 -05:00
|
|
|
|
2015-12-11 07:50:47 -05:00
|
|
|
<LinearLayout
|
2015-12-01 12:16:55 -05:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2015-12-11 07:50:47 -05:00
|
|
|
android:layout_toEndOf="@+id/action_sort"
|
|
|
|
android:layout_toLeftOf="@+id/action_next_unread"
|
|
|
|
android:layout_toRightOf="@+id/action_sort"
|
|
|
|
android:gravity="center_vertical">
|
2015-12-01 12:16:55 -05:00
|
|
|
|
2015-12-11 07:50:47 -05:00
|
|
|
<View
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:background="@color/white"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/action_show_unread"
|
2015-12-01 14:18:19 -05:00
|
|
|
android:layout_width="wrap_content"
|
2015-12-01 12:16:55 -05:00
|
|
|
android:layout_height="match_parent"
|
2015-12-11 07:50:47 -05:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:checkable="true"
|
|
|
|
android:text="@string/action_show_unread"
|
|
|
|
android:title="@string/action_show_unread"/>
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/action_show_downloaded"
|
2015-12-01 12:16:55 -05:00
|
|
|
android:layout_width="wrap_content"
|
2015-12-11 07:50:47 -05:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:checkable="true"
|
|
|
|
android:text="@string/action_show_downloaded"
|
|
|
|
android:title="@string/action_show_downloaded"/>
|
|
|
|
|
|
|
|
<View
|
|
|
|
android:layout_width="1dp"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="10dp"
|
|
|
|
android:background="@color/white"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/action_next_unread"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:src="@drawable/ic_play_arrow_white_36dp"
|
|
|
|
android:title="@string/action_next_unread"/>
|
2015-11-30 12:45:45 -05:00
|
|
|
|
2015-12-11 07:50:47 -05:00
|
|
|
</RelativeLayout>
|
2015-11-24 12:45:53 -05:00
|
|
|
|
|
|
|
</RelativeLayout>
|