|
@@ -19,6 +19,7 @@
|
|
|
android:layout_height="fill_parent"
|
|
|
android:layout_marginLeft="16dp"
|
|
|
android:layout_marginRight="16dp"
|
|
|
+ android:descendantFocusability="blocksDescendants"
|
|
|
tools:listitem="@layout/item_chapter">
|
|
|
|
|
|
</android.support.v7.widget.RecyclerView>
|
|
@@ -37,10 +38,68 @@
|
|
|
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"/>
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginRight="4dp">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:gravity="center_vertical">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/action_sort_up"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:src="@drawable/ic_expand_less_white_36dp"
|
|
|
+ android:title="@string/action_sort_up"
|
|
|
+ android:visible="true"/>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/action_sort_down"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:src="@drawable/ic_expand_more_white_36dp"
|
|
|
+ android:title="@string/action_sort_down"
|
|
|
+ android:visible="true"
|
|
|
+ />
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:layout_width="1dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_margin="4dp"
|
|
|
+ android:background="@color/white"/>
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/action_show_unread"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:checkable="true"
|
|
|
+ android:text="@string/action_show_unread"
|
|
|
+ android:title="@string/action_show_unread"/>
|
|
|
+
|
|
|
+ <CheckBox
|
|
|
+ android:id="@+id/action_show_downloaded"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:checkable="true"
|
|
|
+ android:text="@string/action_show_downloaded"
|
|
|
+ android:title="@string/action_show_downloaded"/>
|
|
|
+
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:id="@+id/action_next_unread"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="fill_parent"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:src="@drawable/ic_play_arrow_white_36dp"
|
|
|
+ android:title="@string/action_next_unread"
|
|
|
+ android:visible="true"/>
|
|
|
+ </RelativeLayout>
|
|
|
</android.support.v7.widget.Toolbar>
|
|
|
|
|
|
|