2015-06-18 13:19:03 -04: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">
|
|
|
|
|
2018-06-07 15:36:52 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_share"
|
2020-09-25 19:16:29 +05:30
|
|
|
android:icon="@drawable/ic_share"
|
2018-06-07 15:36:52 +02:00
|
|
|
android:title="@string/menu_share"
|
|
|
|
app:showAsAction="ifRoom|withText"/>
|
2015-06-18 13:19:03 -04:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_enable_nfc"
|
2020-09-25 19:05:10 +05:30
|
|
|
android:icon="@drawable/ic_nfc"
|
2015-06-18 13:19:03 -04:00
|
|
|
android:title="@string/enable_nfc_send"
|
|
|
|
app:showAsAction="ifRoom|withText" />
|
2018-06-21 22:14:09 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_delete"
|
2020-09-25 16:07:03 +05:30
|
|
|
android:icon="@drawable/ic_delete"
|
2018-06-21 22:14:09 +02:00
|
|
|
android:title="@string/delete"
|
|
|
|
app:showAsAction="ifRoom|withText" />
|
2015-06-18 13:19:03 -04:00
|
|
|
|
2015-09-27 10:19:36 +03:00
|
|
|
</menu>
|