diff options
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/menu/view_imgur_image_fragment.xml (renamed from app/src/main/res/menu/view_imgur_image_fragments.xml) | 6 | ||||
-rw-r--r-- | app/src/main/res/menu/view_imgur_video_fragment.xml | 2 | ||||
-rw-r--r-- | app/src/main/res/menu/view_reddit_gallery_image_or_gif_fragment.xml | 23 | ||||
-rw-r--r-- | app/src/main/res/menu/view_reddit_gallery_video_fragment.xml | 10 |
4 files changed, 37 insertions, 4 deletions
diff --git a/app/src/main/res/menu/view_imgur_image_fragments.xml b/app/src/main/res/menu/view_imgur_image_fragment.xml index bba34621..742186d6 100644 --- a/app/src/main/res/menu/view_imgur_image_fragments.xml +++ b/app/src/main/res/menu/view_imgur_image_fragment.xml @@ -2,21 +2,21 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item - android:id="@+id/action_download_view_imgur_image_fragments" + android:id="@+id/action_download_view_imgur_image_fragment" android:orderInCategory="1" android:title="@string/action_download" android:icon="@drawable/ic_file_download_toolbar_white_24dp" app:showAsAction="ifRoom" /> <item - android:id="@+id/action_share_view_imgur_image_fragments" + android:id="@+id/action_share_view_imgur_image_fragment" android:orderInCategory="2" android:title="@string/action_share" android:icon="@drawable/ic_share_toolbar_white_24dp" app:showAsAction="ifRoom" /> <item - android:id="@+id/action_set_wallpaper_view_imgur_image_fragments" + android:id="@+id/action_set_wallpaper_view_imgur_image_fragment" android:orderInCategory="3" android:title="@string/action_set_wallpaper" app:showAsAction="never" /> diff --git a/app/src/main/res/menu/view_imgur_video_fragment.xml b/app/src/main/res/menu/view_imgur_video_fragment.xml index 7b7c4fc8..8a671463 100644 --- a/app/src/main/res/menu/view_imgur_video_fragment.xml +++ b/app/src/main/res/menu/view_imgur_video_fragment.xml @@ -2,7 +2,7 @@ <menu xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"> <item - android:id="@+id/action_download_view_imgur_image_fragments" + android:id="@+id/action_download_view_imgur_video_fragment" android:orderInCategory="1" android:title="@string/action_download" android:icon="@drawable/ic_file_download_toolbar_white_24dp" diff --git a/app/src/main/res/menu/view_reddit_gallery_image_or_gif_fragment.xml b/app/src/main/res/menu/view_reddit_gallery_image_or_gif_fragment.xml new file mode 100644 index 00000000..e9356888 --- /dev/null +++ b/app/src/main/res/menu/view_reddit_gallery_image_or_gif_fragment.xml @@ -0,0 +1,23 @@ +<?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_download_view_reddit_gallery_image_or_gif_fragment" + android:orderInCategory="1" + android:title="@string/action_download" + android:icon="@drawable/ic_file_download_toolbar_white_24dp" + app:showAsAction="ifRoom" /> + + <item + android:id="@+id/action_share_view_reddit_gallery_image_or_gif_fragment" + android:orderInCategory="2" + android:title="@string/action_share" + android:icon="@drawable/ic_share_toolbar_white_24dp" + app:showAsAction="ifRoom" /> + + <item + android:id="@+id/action_set_wallpaper_view_reddit_gallery_image_or_gif_fragment" + android:orderInCategory="3" + android:title="@string/action_set_wallpaper" + app:showAsAction="never" /> +</menu>
\ No newline at end of file diff --git a/app/src/main/res/menu/view_reddit_gallery_video_fragment.xml b/app/src/main/res/menu/view_reddit_gallery_video_fragment.xml new file mode 100644 index 00000000..061ab71e --- /dev/null +++ b/app/src/main/res/menu/view_reddit_gallery_video_fragment.xml @@ -0,0 +1,10 @@ +<?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_download_view_reddit_gallery_video_fragment" + android:orderInCategory="1" + android:title="@string/action_download" + android:icon="@drawable/ic_file_download_toolbar_white_24dp" + app:showAsAction="ifRoom" /> +</menu>
\ No newline at end of file |