1
0
Fork 0
mirror of https://github.com/MatomoCamp/matomocamp-companion-android.git synced 2024-09-20 17:23:46 +02:00
matomocamp-companion-android/res/menu/event.xml
Christophe Beyls f72fd5966f Load bookmark status asynchronously using a loader to ensure the UI
thread is not blocked when the database is updating. The loader is
notified of bookmarks status changes to deliver the new status
immediately.
2014-01-23 21:34:59 +01:00

21 lines
No EOL
704 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/bookmark"
android:icon="@drawable/ic_action_not_important"
android:title="@string/add_bookmark"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/share"
android:icon="@drawable/ic_action_share"
android:title="@string/share"
app:showAsAction="ifRoom"/>
<item
android:id="@+id/add_to_agenda"
android:icon="@drawable/ic_action_new_event"
android:title="@string/add_to_agenda"
app:showAsAction="ifRoom"/>
</menu>