2017-11-09 10:29:02 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu
|
|
|
|
android:id="@+id/menu_video_options"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item
|
|
|
|
android:id="@+id/toggleOrientation"
|
2020-03-25 15:23:47 +00:00
|
|
|
android:icon="@drawable/ic_screen_rotation_white_24dp"
|
2018-01-04 06:53:31 +00:00
|
|
|
android:title="@string/toggle_orientation"
|
2018-08-28 17:40:05 +00:00
|
|
|
app:showAsAction="ifRoom|withText" />
|
2017-11-09 10:29:02 +00:00
|
|
|
<item
|
|
|
|
android:id="@+id/switchPopup"
|
2020-03-25 15:23:47 +00:00
|
|
|
android:icon="@drawable/ic_fullscreen_exit_white_24dp"
|
2018-01-04 06:53:31 +00:00
|
|
|
android:title="@string/switch_to_popup"
|
2018-08-28 17:40:05 +00:00
|
|
|
app:showAsAction="ifRoom|withText" />
|
2018-01-20 13:46:10 +00:00
|
|
|
<item
|
2017-11-09 10:29:02 +00:00
|
|
|
android:id="@+id/switchBackground"
|
2020-03-25 15:23:47 +00:00
|
|
|
android:icon="?attr/ic_headset"
|
2018-01-04 06:53:31 +00:00
|
|
|
android:title="@string/switch_to_background"
|
2018-08-28 17:40:05 +00:00
|
|
|
app:showAsAction="ifRoom|withText" />
|
2017-11-09 10:29:02 +00:00
|
|
|
</menu>
|
|
|
|
|