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
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_catkey__category_visuals"
|
|
|
|
android:title="@string/pref_cat__visuals">
|
2016-06-09 22:21:49 +02:00
|
|
|
<ListPreference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:dialogTitle="@string/pref_title__font_size"
|
|
|
|
android:entries="@array/pref_entries__font_size"
|
|
|
|
android:entryValues="@array/pref_entries_values__font_size"
|
|
|
|
android:key="@string/pref_key__font_size"
|
2016-07-31 15:16:22 +02:00
|
|
|
android:summary="%s"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:title="@string/pref_title__font_size"/>
|
2016-07-31 15:16:22 +02:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__intellihide_toolbars"
|
|
|
|
android:summary="@string/pref_desc__intellihide_toolbars"
|
|
|
|
android:title="@string/pref_title__intellihide_toolbars"/>
|
2016-07-31 15:16:22 +02:00
|
|
|
|
2016-08-02 23:58:36 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__append_shared_via_app"
|
|
|
|
android:summary="@string/pref_desc__append_shared_via_app"
|
|
|
|
android:title="@string/pref_title__append_shared_via_app"/>
|
|
|
|
|
2016-08-07 02:28:37 +02:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_key__show_exit_button_in_nav_also"
|
|
|
|
android:summary="@string/pref_desc__show_exit_button_in_nav_also"
|
|
|
|
android:title="@string/pref_title__show_exit_button_in_nav_also"/>
|
|
|
|
|
2016-06-09 22:21:49 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
2016-06-18 15:53:49 +02:00
|
|
|
<!-- Diaspora Pod Settings -->
|
|
|
|
<PreferenceCategory
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_catkey__pod_settings"
|
|
|
|
android:title="@string/pref_cat__pod_settings">
|
2016-06-18 15:53:49 +02:00
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__personal_settings"
|
|
|
|
android:summary="@string/pref_desc__personal_settings"
|
|
|
|
android:title="@string/pref_title__personal_settings">
|
2016-06-18 15:53:49 +02:00
|
|
|
</Preference>
|
|
|
|
|
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__manage_tags"
|
|
|
|
android:summary="@string/pref_desc__manage_tags"
|
|
|
|
android:title="@string/pref_title__manage_tags">
|
2016-06-18 15:53:49 +02:00
|
|
|
</Preference>
|
|
|
|
|
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__manage_contacts"
|
|
|
|
android:summary="@string/pref_desc__manage_contacts"
|
|
|
|
android:title="@string/pref_title__manage_contacts">
|
2016-06-18 15:53:49 +02:00
|
|
|
</Preference>
|
2016-06-18 21:45:23 +02:00
|
|
|
|
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__change_account"
|
|
|
|
android:summary="@string/pref_desc__change_account"
|
|
|
|
android:title="@string/pref_title__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
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_catkey__network"
|
|
|
|
android:title="@string/pref_cat__network">
|
2016-06-09 22:21:49 +02:00
|
|
|
<CheckBoxPreference
|
2016-07-31 15:16:22 +02:00
|
|
|
android:defaultValue="true"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__load_images"
|
|
|
|
android:summary="@string/pref_desc__load_images"
|
|
|
|
android:title="@string/pref_title__load_images"/>
|
2016-06-09 22:21:49 +02:00
|
|
|
|
2016-07-26 22:52:26 +02:00
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__clear_cache"
|
|
|
|
android:summary="@string/pref_desc__clear_cache"
|
|
|
|
android:title="@string/pref_title__clear_cache">
|
2016-07-26 22:52:26 +02:00
|
|
|
</Preference>
|
|
|
|
|
2016-06-09 22:21:49 +02:00
|
|
|
<CheckBoxPreference
|
2016-07-31 15:16:22 +02:00
|
|
|
android:defaultValue="false"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__proxy_enabled"
|
|
|
|
android:summary="@string/pref_desc__proxy_enabled"
|
|
|
|
android:title="@string/pref_title__proxy_enabled"/>
|
2016-06-09 22:21:49 +02:00
|
|
|
<EditTextPreference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:dependency="@string/pref_key__proxy_enabled"
|
2016-07-31 15:16:22 +02:00
|
|
|
android:inputType="textNoSuggestions"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__proxy_host"
|
|
|
|
android:title="@string/pref_title__proxy_host"/>
|
2016-06-09 22:21:49 +02:00
|
|
|
<EditTextPreference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:dependency="@string/pref_key__proxy_enabled"
|
2016-07-31 15:16:22 +02:00
|
|
|
android:inputType="number"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__proxy_port"
|
|
|
|
android:title="@string/pref_title__proxy_port"/>
|
2016-06-09 22:21:49 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|