diff options
Diffstat (limited to 'app/src/main/res/menu/menu_video.xml')
-rw-r--r-- | app/src/main/res/menu/menu_video.xml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/src/main/res/menu/menu_video.xml b/app/src/main/res/menu/menu_video.xml new file mode 100644 index 00000000..955a03ee --- /dev/null +++ b/app/src/main/res/menu/menu_video.xml @@ -0,0 +1,15 @@ +<menu xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto"> + + <item + android:id="@+id/action_pip" + android:orderInCategory="100" + android:title="@string/pip" + app:showAsAction="always" /> + <item + android:id="@+id/action_download" + android:orderInCategory="200" + android:title="@string/download" + app:showAsAction="ifRoom" /> +</menu> + |