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">
|
2016-06-18 15:53:49 +02:00
|
|
|
<!-- Appearance -->
|
2016-06-09 22:21:49 +02:00
|
|
|
<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>
|
|
|
|
|
2016-06-18 15:53:49 +02:00
|
|
|
<!-- Diaspora Pod Settings -->
|
|
|
|
<PreferenceCategory
|
|
|
|
android:title="@string/pref_category_pod_settings"
|
|
|
|
android:key="pref_key_category_pod_settings">
|
|
|
|
<Preference
|
|
|
|
android:title="@string/pref_title_personal_settings"
|
2016-06-20 10:51:20 +02:00
|
|
|
android:key="pref_key_personal_settings"
|
|
|
|
android:summary="@string/pref_desc_personal_settings">
|
2016-06-18 15:53:49 +02:00
|
|
|
</Preference>
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:title="@string/pref_title_manage_tags"
|
2016-06-20 10:51:20 +02:00
|
|
|
android:key="pref_key_manage_tags"
|
|
|
|
android:summary="@string/pref_desc_manage_tags">
|
2016-06-18 15:53:49 +02:00
|
|
|
</Preference>
|
|
|
|
|
|
|
|
<Preference
|
|
|
|
android:title="@string/pref_title_manage_contacts"
|
2016-06-20 10:51:20 +02:00
|
|
|
android:key="pref_key_manage_contacts"
|
|
|
|
android:summary="@string/pref_desc_manage_contacts">
|
2016-06-18 15:53:49 +02:00
|
|
|
</Preference>
|
2016-06-18 21:45:23 +02:00
|
|
|
|
|
|
|
<Preference
|
2016-06-20 10:51:20 +02:00
|
|
|
android:title="@string/pref_title_change_account"
|
|
|
|
android:key="pref_key_change_account"
|
|
|
|
android:summary="@string/pref_desc_change_account">
|
2016-06-18 21:45:23 +02:00
|
|
|
</Preference>
|
2016-06-18 15:53:49 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<!-- Networking -->
|
2016-06-09 22:21:49 +02:00
|
|
|
<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>
|