* Added option to prevent updating sources and tags. * Delete removed sources and tags from database.
44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="items_caching"
|
|
android:summaryOff="@string/pref_switch_items_caching_off"
|
|
android:summaryOn="@string/pref_switch_items_caching_on"
|
|
android:title="@string/pref_switch_items_caching" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="periodic_refresh"
|
|
android:dependency="items_caching"
|
|
android:summaryOff="@string/pref_switch_periodic_refresh_off"
|
|
android:summaryOn="@string/pref_switch_periodic_refresh_on"
|
|
android:title="@string/pref_switch_periodic_refresh" />
|
|
|
|
<EditTextPreference
|
|
android:dependency="periodic_refresh"
|
|
android:defaultValue="360"
|
|
android:inputType="number"
|
|
android:key="periodic_refresh_minutes"
|
|
android:selectAllOnFocus="true"
|
|
android:singleLine="true"
|
|
android:title="@string/pref_periodic_refresh_minutes_title" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="refresh_when_charging"
|
|
android:dependency="periodic_refresh"
|
|
android:title="@string/pref_switch_refresh_when_charging" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="false"
|
|
android:key="notify_new_items"
|
|
android:dependency="periodic_refresh"
|
|
android:title="@string/pref_switch_notify_new_items" />
|
|
|
|
<SwitchPreference
|
|
android:defaultValue="true"
|
|
android:key="update_sources"
|
|
android:summary="@string/pref_switch_update_sources_summary"
|
|
android:title="@string/pref_switch_update_sources" />
|
|
</PreferenceScreen>
|