2015-12-19 14:58:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2020-01-24 02:51:37 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
2015-12-19 14:58:36 +01:00
|
|
|
|
2020-02-23 18:42:10 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/reorder"
|
|
|
|
android:title="@string/action_reorganize_by"
|
|
|
|
app:showAsAction="never">
|
|
|
|
<menu>
|
|
|
|
<item
|
2021-01-23 19:10:57 +01:00
|
|
|
android:id="@+id/action_sort_date"
|
|
|
|
android:title="@string/action_order_by_upload_date"
|
|
|
|
app:showAsAction="never">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/newest"
|
|
|
|
android:title="@string/action_newest" />
|
|
|
|
<item
|
|
|
|
android:id="@+id/oldest"
|
|
|
|
android:title="@string/action_oldest" />
|
|
|
|
</menu>
|
|
|
|
</item>
|
2020-02-23 18:42:10 +01:00
|
|
|
<item
|
2021-01-23 19:10:57 +01:00
|
|
|
android:id="@+id/action_sort_chapter"
|
|
|
|
android:title="@string/action_order_by_chapter_number"
|
|
|
|
app:showAsAction="never">
|
|
|
|
<menu>
|
|
|
|
<item
|
2021-01-23 19:19:57 +01:00
|
|
|
android:id="@+id/asc"
|
|
|
|
android:title="@string/action_asc" />
|
2021-01-23 19:10:57 +01:00
|
|
|
<item
|
2021-01-23 19:19:57 +01:00
|
|
|
android:id="@+id/desc"
|
|
|
|
android:title="@string/action_desc" />
|
2021-01-23 19:10:57 +01:00
|
|
|
</menu>
|
|
|
|
</item>
|
2020-02-23 18:42:10 +01:00
|
|
|
</menu>
|
|
|
|
</item>
|
|
|
|
|
2020-01-24 02:51:37 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/clear_queue"
|
2020-02-23 17:46:47 +01:00
|
|
|
android:title="@string/action_cancel_all"
|
2020-01-24 02:51:37 +01:00
|
|
|
app:showAsAction="never" />
|
2016-02-09 16:34:41 +01:00
|
|
|
|
2020-01-24 02:51:37 +01:00
|
|
|
</menu>
|