2019-04-02 18:08:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2019-07-15 16:58:27 +02:00
|
|
|
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-01-22 17:17:42 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2019-04-02 18:08:43 +02:00
|
|
|
|
2020-10-01 17:43:43 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_home_setting"
|
|
|
|
android:icon="@drawable/ic_settings_x"
|
|
|
|
android:title="@string/settings"
|
|
|
|
app:showAsAction="never" />
|
|
|
|
|
2019-04-03 16:36:45 +02:00
|
|
|
<item
|
2019-06-27 13:53:19 +02:00
|
|
|
android:id="@+id/menu_home_suggestion"
|
|
|
|
android:icon="@drawable/ic_material_bug_report"
|
|
|
|
android:title="@string/send_suggestion" />
|
2019-04-02 18:08:43 +02:00
|
|
|
|
2019-06-27 14:01:44 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_home_report_bug"
|
|
|
|
android:icon="@drawable/ic_material_bug_report"
|
|
|
|
android:title="@string/send_bug_report" />
|
|
|
|
|
2021-01-22 17:17:42 +01:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_home_init_sync_legacy"
|
2021-02-09 11:04:47 +01:00
|
|
|
android:title="Do a legacy init sync"
|
2021-01-22 17:17:42 +01:00
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
|
|
|
<item
|
|
|
|
android:id="@+id/menu_home_init_sync_optimized"
|
2021-02-09 11:04:47 +01:00
|
|
|
android:title="Do an optimized init sync"
|
2021-01-22 17:17:42 +01:00
|
|
|
tools:ignore="HardcodedText" />
|
|
|
|
|
2019-07-15 16:58:27 +02:00
|
|
|
<item
|
|
|
|
android:id="@+id/menu_home_filter"
|
2020-05-20 18:47:19 +02:00
|
|
|
android:icon="@drawable/ic_search"
|
2019-07-15 16:58:27 +02:00
|
|
|
android:title="@string/home_filter_placeholder_home"
|
2021-06-09 11:51:04 +02:00
|
|
|
app:iconTint="?vctr_content_secondary"
|
2019-07-15 16:58:27 +02:00
|
|
|
app:showAsAction="always" />
|
|
|
|
|
2019-04-02 18:08:43 +02:00
|
|
|
</menu>
|