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-08-13 14:13:14 +02:00
|
|
|
|
|
|
|
<PreferenceScreen
|
2016-08-13 15:54:18 +02:00
|
|
|
android:summary="@string/pref_desc__sub_nav_slider"
|
|
|
|
android:title="@string/pref_title__sub_nav_slider">
|
2016-08-13 14:13:14 +02:00
|
|
|
|
|
|
|
<PreferenceCategory
|
|
|
|
android:key="@string/pref_catkey__visibility_nav"
|
2016-08-13 15:54:18 +02:00
|
|
|
android:title="@string/pref_cat__visibility_nav_items">
|
2016-08-13 14:13:14 +02:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__visibility_nav__profile"
|
|
|
|
android:title="@string/nav_profile" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__visibility_nav__followed_tags"
|
|
|
|
android:title="@string/nav_followed_tags" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__visibility_nav__aspects"
|
|
|
|
android:title="@string/nav_aspects" />
|
|
|
|
<CheckBoxPreference
|
2016-08-28 17:54:35 +02:00
|
|
|
android:defaultValue="false"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:key="@string/pref_key__visibility_nav__activities"
|
|
|
|
android:title="@string/nav_activities" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__visibility_nav__liked"
|
|
|
|
android:title="@string/nav_liked" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__visibility_nav__commented"
|
|
|
|
android:title="@string/nav_commented" />
|
|
|
|
<CheckBoxPreference
|
2016-08-28 17:54:35 +02:00
|
|
|
android:defaultValue="false"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:key="@string/pref_key__visibility_nav__mentions"
|
|
|
|
android:title="@string/nav_mentions" />
|
|
|
|
<CheckBoxPreference
|
2016-08-28 17:54:35 +02:00
|
|
|
android:defaultValue="false"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:key="@string/pref_key__visibility_nav__public_activities"
|
|
|
|
android:title="@string/nav_public_activities" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="@string/pref_key__visibility_nav__exit"
|
|
|
|
android:title="@string/action_exit_app" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="@string/pref_key__visibility_nav__help_license"
|
|
|
|
android:title="@string/nav_help_license" />
|
|
|
|
|
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|
|
|
|
|
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-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__font_size" />
|
2016-07-31 15:16:22 +02:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
2016-08-07 23:37:02 +02:00
|
|
|
android:defaultValue="false"
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__intellihide_toolbars"
|
|
|
|
android:summary="@string/pref_desc__intellihide_toolbars"
|
2016-08-13 14:13:14 +02:00
|
|
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__append_shared_via_app" />
|
2016-08-07 02:28:37 +02:00
|
|
|
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__personal_settings" />
|
2016-06-18 15:53:49 +02:00
|
|
|
|
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__manage_tags"
|
|
|
|
android:summary="@string/pref_desc__manage_tags"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__manage_tags" />
|
2016-06-18 15:53:49 +02:00
|
|
|
|
|
|
|
<Preference
|
2016-08-02 21:32:42 +02:00
|
|
|
android:key="@string/pref_key__manage_contacts"
|
|
|
|
android:summary="@string/pref_desc__manage_contacts"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__manage_contacts" />
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__change_account" />
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__clear_cache" />
|
2016-07-26 22:52:26 +02:00
|
|
|
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
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"
|
2016-08-13 14:13:14 +02:00
|
|
|
android:title="@string/pref_title__proxy_port" />
|
2016-06-09 22:21:49 +02:00
|
|
|
</PreferenceCategory>
|
|
|
|
</PreferenceScreen>
|