mirror of
https://github.com/FossifyOrg/Gallery.git
synced 2024-11-28 15:37:59 +01:00
18 lines
662 B
XML
18 lines
662 B
XML
<?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
|
|
android:id="@+id/menu_change_orientation"
|
|
android:icon="@drawable/ic_orientation_auto"
|
|
android:title="@string/change_orientation"
|
|
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>
|