BobStore/res/xml/preferences.xml

38 lines
1.8 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
<PreferenceCategory android:title="@string/storage">
<CheckBoxPreference android:title="@string/cache_downloaded"
android:defaultValue="false" android:summary="@string/keep_downloaded"
android:key="cacheDownloaded" />
</PreferenceCategory>
<PreferenceCategory android:title="@string/updates">
<ListPreference android:title="@string/automatic_repo_scan"
android:summary="@string/update_apps_list"
android:key="updateInterval" android:defaultValue="0"
android:entries="@array/updateIntervalNames" android:entryValues="@array/updateIntervalValues" />
<CheckBoxPreference android:title="@string/notify"
android:defaultValue="false" android:summary="@string/notify_updates_available"
android:key="updateNotify" />
</PreferenceCategory>
2010-12-16 21:40:17 +00:00
<PreferenceCategory android:title="@string/antifeatures">
<CheckBoxPreference android:title="@string/antiads"
android:defaultValue="false" android:summary="@string/antiadslong"
android:key="antiAds" />
2010-12-16 21:40:17 +00:00
<CheckBoxPreference android:title="@string/antitrack"
android:defaultValue="false" android:summary="@string/antitracklong"
android:key="antiTracking" />
2010-12-16 21:40:17 +00:00
<CheckBoxPreference android:title="@string/antinonfreead"
android:defaultValue="false" android:summary="@string/antinonfreeadlong"
android:key="antiNonFreeAdd" />
2010-12-16 21:40:17 +00:00
<CheckBoxPreference android:title="@string/antinonfreenet"
android:defaultValue="false" android:summary="@string/antinonfreenetlong"
android:key="antiNonFreeNet" />
2010-12-16 21:40:17 +00:00
</PreferenceCategory>
<PreferenceCategory android:title="@string/maintenance">
<Preference
android:title="@string/reset"
android:summary="@string/clear_all_cached_data"
android:key="reset" />
</PreferenceCategory>
</PreferenceScreen>