2016-10-05 20:55:01 +02: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">
|
2016-12-06 19:06:54 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/save_as"
|
2017-01-04 20:13:26 +01:00
|
|
|
android:icon="@drawable/ic_check"
|
2016-12-06 19:06:54 +01:00
|
|
|
android:title="@string/save_as"
|
|
|
|
app:showAsAction="always"/>
|
2017-04-17 18:41:11 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/flip"
|
|
|
|
android:icon="@drawable/ic_flip"
|
|
|
|
android:title="@string/flip"
|
|
|
|
app:showAsAction="ifRoom">
|
|
|
|
<menu>
|
|
|
|
<item
|
|
|
|
android:id="@+id/flip_horizontally"
|
|
|
|
android:title="@string/flip_horizontally"/>
|
|
|
|
<item
|
|
|
|
android:id="@+id/flip_vertically"
|
|
|
|
android:title="@string/flip_vertically"/>
|
|
|
|
</menu>
|
|
|
|
</item>
|
2017-06-18 19:56:45 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/edit"
|
|
|
|
android:title="@string/edit_with"
|
|
|
|
app:showAsAction="never"/>
|
2016-10-05 20:55:01 +02:00
|
|
|
</menu>
|