2019-08-03 16:15:39 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android">
|
2022-10-26 14:07:49 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_toggle_favorite"
|
|
|
|
android:orderInCategory="70"
|
|
|
|
android:icon="@drawable/ic_unset_favorite"
|
|
|
|
android:title="@string/favorite"
|
|
|
|
app:showAsAction="always" />
|
2019-12-07 18:59:49 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_copy"
|
|
|
|
android:orderInCategory="80"
|
|
|
|
android:icon="@drawable/ic_content_copy_white_24dp"
|
|
|
|
android:title="@string/copy"
|
|
|
|
app:showAsAction="always" />
|
|
|
|
|
2019-08-03 16:15:39 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/action_edit"
|
|
|
|
android:orderInCategory="90"
|
|
|
|
android:icon="@drawable/ic_mode_edit"
|
2020-07-15 13:28:29 +02:00
|
|
|
android:title="@string/edit"
|
2019-08-03 16:15:39 +02:00
|
|
|
app:showAsAction="always" />
|
|
|
|
|
|
|
|
<item
|
2023-08-31 21:56:05 +02:00
|
|
|
android:id="@+id/action_assign_icons"
|
|
|
|
android:title="@string/assign_icons"
|
2019-08-03 16:15:39 +02:00
|
|
|
android:orderInCategory="100"
|
|
|
|
android:tint="?attr/iconColorPrimary"
|
2023-08-31 21:56:05 +02:00
|
|
|
app:showAsAction="never"/>
|
2020-05-22 02:52:12 +02:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_share_qr"
|
2020-06-16 13:35:54 +02:00
|
|
|
android:title="@string/action_transfer"
|
2023-08-31 21:56:05 +02:00
|
|
|
android:orderInCategory="110"
|
2020-05-22 02:52:12 +02:00
|
|
|
android:icon="@drawable/ic_qr_code_full"
|
|
|
|
android:tint="?attr/iconColorPrimary"
|
|
|
|
app:showAsAction="always"/>
|
2023-08-31 21:56:05 +02:00
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/action_delete"
|
|
|
|
android:title="@string/action_delete"
|
|
|
|
android:orderInCategory="400"
|
|
|
|
android:icon="@drawable/ic_delete_white"
|
|
|
|
android:tint="?attr/iconColorPrimary"
|
|
|
|
app:showAsAction="ifRoom"/>
|
2019-08-03 16:15:39 +02:00
|
|
|
</menu>
|