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"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
<item
|
2019-01-02 15:47:24 +01:00
|
|
|
android:id="@+id/menu_change_orientation"
|
|
|
|
android:icon="@drawable/ic_orientation_auto"
|
|
|
|
android:title="@string/change_orientation"
|
2019-01-02 13:24:23 +01:00
|
|
|
app:showAsAction="ifRoom"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/menu_share"
|
|
|
|
android:icon="@drawable/ic_share"
|
|
|
|
android:title="@string/share"
|
|
|
|
app:showAsAction="ifRoom"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/menu_open_with"
|
|
|
|
android:title="@string/open_with"
|
|
|
|
app:showAsAction="never"/>
|
|
|
|
</menu>
|