mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-02-03 12:49:14 +00:00
5db0cc5241
obsolete layout params Ellipsis string can be replaced with ellipsis character Missing inputType Usage of showAsAction=always BUILD SUCCESSFUL in 5s 39 actionable tasks: 4 executed, 35 up-to-date
23 lines
806 B
XML
23 lines
806 B
XML
<?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"
|
|
android:icon="@drawable/ic_screen_rotation_white"
|
|
android:title="@string/toggle_orientation"
|
|
app:showAsAction="ifRoom|withText" />
|
|
<item
|
|
android:id="@+id/switchPopup"
|
|
android:icon="@drawable/ic_fullscreen_exit_white"
|
|
android:title="@string/switch_to_popup"
|
|
app:showAsAction="ifRoom|withText" />
|
|
<item
|
|
android:id="@+id/switchBackground"
|
|
android:icon="?audio"
|
|
android:title="@string/switch_to_background"
|
|
app:showAsAction="ifRoom|withText" />
|
|
</menu>
|
|
|