2016-10-21 13:01:30 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
|
2017-03-11 17:10:51 +01:00
|
|
|
<group
|
|
|
|
android:checkableBehavior="single"
|
|
|
|
android:id="@+id/applicaction_options">
|
2016-10-21 13:01:30 +02:00
|
|
|
<item android:id="@+id/action_settings"
|
|
|
|
android:title="@string/action_settings"
|
|
|
|
android:icon="@drawable/ic_settings" />
|
|
|
|
<item android:id="@+id/action_debug"
|
|
|
|
android:title="@string/action_debug"
|
|
|
|
android:icon="@drawable/ic_debug" />
|
|
|
|
<item android:id="@+id/action_db_management"
|
|
|
|
android:title="@string/action_db_management"
|
|
|
|
android:icon="@drawable/ic_database_management" />
|
2018-06-19 18:26:06 +02:00
|
|
|
<item android:id="@+id/action_blacklist"
|
|
|
|
android:title="@string/title_activity_appblacklist"
|
|
|
|
android:icon="@drawable/ic_block_black" />
|
|
|
|
|
2016-10-21 13:01:30 +02:00
|
|
|
<item android:id="@+id/action_quit"
|
|
|
|
android:title="@string/action_quit"
|
|
|
|
android:icon="@drawable/ic_quit" />
|
|
|
|
</group>
|
|
|
|
|
2017-03-11 17:10:51 +01:00
|
|
|
<group
|
|
|
|
android:checkableBehavior="single"
|
|
|
|
android:id="@+id/further_options">
|
2017-08-18 21:51:12 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/donation_link"
|
|
|
|
android:title="@string/action_donate"
|
|
|
|
android:icon="@drawable/ic_donate" />
|
2016-10-29 18:20:53 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/external_changelog"
|
2017-08-27 18:48:13 +02:00
|
|
|
android:title="@string/changelog_full_title"
|
|
|
|
android:icon="@drawable/ic_history_black" />
|
2016-10-29 18:20:53 +02:00
|
|
|
</group>
|
2016-10-21 13:01:30 +02:00
|
|
|
</menu>
|