2019-01-02 13:24:23 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2022-04-10 20:12:46 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
tools:ignore="AppCompatResource">
|
2019-01-02 13:24:23 +01:00
|
|
|
<item
|
2019-01-02 15:47:24 +01:00
|
|
|
android:id="@+id/menu_change_orientation"
|
2019-08-09 11:02:20 +02:00
|
|
|
android:icon="@drawable/ic_orientation_auto_vector"
|
2019-01-02 15:47:24 +01:00
|
|
|
android:title="@string/change_orientation"
|
2021-11-29 19:17:48 +01:00
|
|
|
app:showAsAction="ifRoom" />
|
2019-01-02 13:24:23 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_share"
|
2019-08-09 12:01:01 +02:00
|
|
|
android:icon="@drawable/ic_share_vector"
|
2019-01-02 13:24:23 +01:00
|
|
|
android:title="@string/share"
|
2021-11-29 19:17:48 +01:00
|
|
|
app:showAsAction="ifRoom" />
|
2019-01-02 13:24:23 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_open_with"
|
2022-04-04 15:32:08 +02:00
|
|
|
android:showAsAction="never"
|
2019-01-02 13:24:23 +01:00
|
|
|
android:title="@string/open_with"
|
2021-11-29 19:17:48 +01:00
|
|
|
app:showAsAction="never" />
|
2019-01-02 13:24:23 +01:00
|
|
|
</menu>
|