2010-11-07 23:06:46 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
2015-10-19 09:21:48 +02:00
|
|
|
<PreferenceCategory android:title="@string/updates">
|
|
|
|
<ListPreference android:title="@string/update_interval"
|
|
|
|
android:key="updateInterval"
|
|
|
|
android:defaultValue="24"
|
|
|
|
android:entries="@array/updateIntervalNames"
|
|
|
|
android:entryValues="@array/updateIntervalValues" />
|
|
|
|
<CheckBoxPreference android:title="@string/automatic_scan_wifi"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="updateOnWifiOnly" />
|
|
|
|
<CheckBoxPreference android:title="@string/notify"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="updateNotify" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:defaultValue="14"
|
|
|
|
android:key="updateHistoryDays"
|
|
|
|
android:maxLength="2"
|
|
|
|
android:numeric="integer"
|
|
|
|
android:title="@string/update_history" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/display">
|
2015-04-09 11:58:31 +02:00
|
|
|
<ListPreference android:title="@string/pref_language"
|
|
|
|
android:key="language"
|
|
|
|
android:defaultValue=""
|
2015-12-16 12:03:32 +01:00
|
|
|
android:entries="@array/languageNames"
|
2015-04-09 11:58:31 +02:00
|
|
|
android:entryValues="@array/languageValues" />
|
2015-10-19 09:21:48 +02:00
|
|
|
<ListPreference android:title="@string/theme"
|
|
|
|
android:key="theme"
|
|
|
|
android:defaultValue="light"
|
|
|
|
android:entries="@array/themeNames"
|
|
|
|
android:entryValues="@array/themeValues" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/appcompatibility">
|
|
|
|
<CheckBoxPreference android:title="@string/show_incompat_versions"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="incompatibleVersions" />
|
|
|
|
<CheckBoxPreference android:title="@string/rooted"
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="rooted" />
|
|
|
|
<CheckBoxPreference android:title="@string/ignoreTouch"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="ignoreTouchscreen" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/local_repo">
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="localRepoName"
|
|
|
|
android:title="@string/local_repo_name" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/proxy" >
|
2014-05-28 19:55:47 -04:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="enableProxy"
|
|
|
|
android:title="@string/enable_proxy_title"
|
|
|
|
android:summary="@string/enable_proxy_summary" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="proxyHost"
|
|
|
|
android:title="@string/proxy_host"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:summary="@string/proxy_host_summary"
|
|
|
|
android:dependency="enableProxy" />
|
2014-05-28 19:55:47 -04:00
|
|
|
<EditTextPreference
|
|
|
|
android:key="proxyPort"
|
|
|
|
android:title="@string/proxy_port"
|
2014-08-28 17:46:23 +01:00
|
|
|
android:summary="@string/proxy_port_summary"
|
2015-10-19 09:21:48 +02:00
|
|
|
android:dependency="enableProxy" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/other">
|
|
|
|
<CheckBoxPreference android:title="@string/cache_downloaded"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="cacheDownloaded" />
|
|
|
|
<CheckBoxPreference android:title="@string/expert"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="expert" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:key="unstableUpdates"
|
|
|
|
android:title="@string/unstable_updates"
|
|
|
|
android:summary="@string/unstable_updates_summary"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:dependency="expert" />
|
|
|
|
<CheckBoxPreference android:title="@string/system_installer"
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="privilegedInstaller"
|
|
|
|
android:dependency="expert" />
|
|
|
|
<Preference android:title="@string/uninstall_system"
|
|
|
|
android:summary="@string/uninstall_system_summary"
|
|
|
|
android:key="uninstallPrivilegedApp"
|
|
|
|
android:dependency="expert" />
|
|
|
|
</PreferenceCategory>
|
2010-11-07 23:06:46 +00:00
|
|
|
</PreferenceScreen>
|