mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-16 10:59:17 +01:00
55 lines
1.8 KiB
XML
55 lines
1.8 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_edit"
|
||
|
android:icon="@drawable/ic_edit_white_24dp"
|
||
|
android:title="@string/action_edit"
|
||
|
app:showAsAction="ifRoom" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_download"
|
||
|
android:icon="@drawable/ic_file_download_white_24dp"
|
||
|
android:title="@string/action_share"
|
||
|
app:showAsAction="ifRoom">
|
||
|
<menu>
|
||
|
<item
|
||
|
android:id="@+id/download_next"
|
||
|
android:title="@string/download_1" />
|
||
|
<item
|
||
|
android:id="@+id/download_next_5"
|
||
|
android:title="@string/download_5" />
|
||
|
<item
|
||
|
android:id="@+id/download_next_10"
|
||
|
android:title="@string/download_10" />
|
||
|
<item
|
||
|
android:id="@+id/download_custom"
|
||
|
android:title="@string/download_custom" />
|
||
|
<item
|
||
|
android:id="@+id/download_unread"
|
||
|
android:title="@string/download_unread" />
|
||
|
<item
|
||
|
android:id="@+id/download_all"
|
||
|
android:title="@string/download_all" />
|
||
|
</menu>
|
||
|
</item>
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_mark_all_as_read"
|
||
|
android:icon="@drawable/ic_done_all_white_24dp"
|
||
|
android:title="@string/action_mark_all_as_read"
|
||
|
app:showAsAction="never" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_open_in_web_view"
|
||
|
android:title="@string/action_open_in_web_view"
|
||
|
app:showAsAction="never" />
|
||
|
|
||
|
<item
|
||
|
android:id="@+id/action_add_to_home_screen"
|
||
|
android:title="@string/action_add_to_home_screen"
|
||
|
app:showAsAction="never" />
|
||
|
|
||
|
</menu>
|