2016-06-09 22:21:49 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_visuals"
|
|
|
|
android:key="pref_key_category_visuals">
|
|
|
|
<ListPreference
|
|
|
|
android:title="@string/pref_title_font_size"
|
|
|
|
android:key="pref_key_font_size"
|
|
|
|
android:dialogTitle="@string/pref_title_font_size"
|
2016-06-16 22:55:06 +02:00
|
|
|
android:summary="%s"
|
2016-06-09 22:21:49 +02:00
|
|
|
android:entries="@array/pref_entries_font_size"
|
|
|
|
android:entryValues="@array/pref_entry_values_font_size" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_network"
|
|
|
|
android:key="pref_key_category_network">
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/pref_title_load_images"
|
|
|
|
android:key="pref_key_load_images"
|
|
|
|
android:summary="@string/pref_desc_load_images"
|
|
|
|
android:defaultValue="true" />
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:title="@string/pref_title_proxy_enabled"
|
|
|
|
android:key="pref_key_proxy_enabled"
|
2016-06-11 00:28:26 +02:00
|
|
|
android:summary="@string/pref_desc_proxy_enabled"
|
2016-06-09 22:21:49 +02:00
|
|
|
android:defaultValue="false" />
|
|
|
|
<EditTextPreference
|
|
|
|
android:title="@string/pref_title_proxy_host"
|
|
|
|
android:key="pref_key_proxy_host"
|
2016-06-11 00:28:26 +02:00
|
|
|
android:dependency="pref_key_proxy_enabled"
|
|
|
|
android:inputType="textNoSuggestions"/>
|
2016-06-09 22:21:49 +02:00
|
|
|
<EditTextPreference
|
|
|
|
android:title="@string/pref_title_proxy_port"
|
|
|
|
android:key="pref_key_proxy_port"
|
|
|
|
android:dependency="pref_key_proxy_enabled"
|
|
|
|
android:inputType="number" />
|
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
</PreferenceScreen>
|