icons: add icons for Settings / Automations

This commit is contained in:
Thomas Kuehne
2025-08-05 21:44:29 +02:00
committed by José Rebelo
parent 6634302353
commit 5d9d547250
3 changed files with 27 additions and 9 deletions
+7 -9
View File
@@ -253,18 +253,17 @@
android:title="@string/pref_header_automations">
<PreferenceCategory
android:title="@string/pref_header_auto_export"
app:iconSpaceReserved="false">
android:title="@string/pref_header_auto_export">
<Preference
android:key="auto_export_location"
android:title="@string/pref_title_auto_export_location"
app:iconSpaceReserved="false" />
android:icon="@drawable/ic_file_export" />
<SwitchPreferenceCompat
android:defaultValue="false"
android:key="auto_export_enabled"
android:layout="@layout/preference_checkbox"
android:title="@string/pref_title_auto_export_enabled"
app:iconSpaceReserved="false" />
android:icon="@drawable/ic_toggle_on" />
<EditTextPreference
android:defaultValue="3"
android:dependency="auto_export_enabled"
@@ -273,19 +272,18 @@
android:maxLength="3"
android:summary="@string/pref_summary_auto_export_interval"
android:title="@string/pref_title_auto_export_interval"
app:iconSpaceReserved="false" />
android:icon="@drawable/ic_timer" />
</PreferenceCategory>
<PreferenceCategory
android:title="@string/pref_header_auto_fetch"
app:iconSpaceReserved="false">
android:title="@string/pref_header_auto_fetch">
<SwitchPreferenceCompat
android:defaultValue="false"
android:key="auto_fetch_enabled"
android:layout="@layout/preference_checkbox"
android:summary="@string/pref_auto_fetch_summary"
android:title="@string/pref_auto_fetch"
app:iconSpaceReserved="false" />
android:icon="@drawable/ic_refresh" />
<EditTextPreference
android:defaultValue="0"
android:dependency="auto_fetch_enabled"
@@ -294,7 +292,7 @@
android:maxLength="3"
android:summary="@string/pref_auto_fetch_limit_fetches_summary"
android:title="@string/pref_auto_fetch_limit_fetches"
app:iconSpaceReserved="false" />
android:icon="@drawable/ic_timer" />
</PreferenceCategory>
</PreferenceScreen>