2011-09-08 10:23:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2011-12-07 11:59:30 +00:00
|
|
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/connection" >
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="login"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:summary="@string/login_summary"
|
|
|
|
android:title="@string/login" >
|
|
|
|
</EditTextPreference>
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="password"
|
|
|
|
android:password="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:title="@string/password" >
|
|
|
|
</EditTextPreference>
|
|
|
|
<EditTextPreference
|
|
|
|
android:hint="@string/default_url"
|
2012-02-25 11:05:37 +00:00
|
|
|
android:inputType="textUri"
|
2011-12-07 11:59:30 +00:00
|
|
|
android:key="ttrss_url"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:summary="@string/ttrss_url_summary"
|
|
|
|
android:title="@string/ttrss_url" >
|
|
|
|
</EditTextPreference>
|
2012-10-08 08:35:43 +00:00
|
|
|
</PreferenceCategory>
|
2012-10-09 09:16:05 +00:00
|
|
|
<PreferenceCategory android:title="@string/ssl" >
|
2011-12-07 11:59:30 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="ssl_trust_any"
|
2012-09-25 09:47:04 +00:00
|
|
|
android:summary="@string/ssl_trust_any_long"
|
2011-12-07 11:59:30 +00:00
|
|
|
android:title="@string/ssl_trust_any" />
|
2012-09-25 09:47:04 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="ssl_trust_any_host"
|
|
|
|
android:summary="@string/ssl_trust_any_host_long"
|
|
|
|
android:title="@string/ssl_trust_any_host" />
|
2011-12-07 11:59:30 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/http_authentication" >
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="http_login"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:summary="@string/http_login_summary"
|
|
|
|
android:title="@string/login" >
|
|
|
|
</EditTextPreference>
|
|
|
|
<EditTextPreference
|
|
|
|
android:key="http_password"
|
|
|
|
android:password="true"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:title="@string/password" >
|
|
|
|
</EditTextPreference>
|
|
|
|
</PreferenceCategory>
|
2012-09-23 17:14:01 +00:00
|
|
|
<PreferenceCategory
|
|
|
|
android:key="category_look_and_feel"
|
|
|
|
android:title="@string/look_and_feel" >
|
2011-12-07 11:59:30 +00:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="THEME_DARK"
|
|
|
|
android:entries="@array/pref_theme_names"
|
|
|
|
android:entryValues="@array/pref_theme_values"
|
|
|
|
android:key="theme"
|
|
|
|
android:summary="@string/pref_theme_long"
|
|
|
|
android:title="@string/pref_theme" />
|
2012-02-25 11:05:37 +00:00
|
|
|
|
2011-12-07 11:59:30 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="sort_feeds_by_unread"
|
|
|
|
android:title="@string/sort_feeds_by_unread" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="download_feed_icons"
|
|
|
|
android:title="@string/download_feed_icons" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="enable_cats"
|
|
|
|
android:title="@string/enable_cats" />
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
2012-03-21 06:38:58 +00:00
|
|
|
android:dependency="enable_cats"
|
2012-09-23 17:14:01 +00:00
|
|
|
android:key="browse_cats_like_feeds"
|
2011-12-07 11:59:30 +00:00
|
|
|
android:summary="@string/browse_cats_like_feeds_summary"
|
|
|
|
android:title="@string/browse_cats_like_feeds" />
|
|
|
|
|
2012-09-19 12:59:08 +00:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="HEADLINES"
|
|
|
|
android:entries="@array/pref_view_mode_names"
|
|
|
|
android:entryValues="@array/pref_view_mode_values"
|
|
|
|
android:key="default_view_mode"
|
|
|
|
android:summary="@string/pref_default_view_mode_long"
|
|
|
|
android:title="@string/pref_default_view_mode" />
|
2013-03-21 06:03:50 +00:00
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="headlines_show_content"
|
|
|
|
android:summary="@string/pref_headlines_show_content_long"
|
|
|
|
android:title="@string/pref_headlines_show_content" />
|
2013-01-05 08:33:06 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/reading" >
|
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="0"
|
|
|
|
android:entries="@array/pref_font_size_names"
|
|
|
|
android:entryValues="@array/pref_font_size_values"
|
|
|
|
android:key="font_size"
|
|
|
|
android:title="@string/pref_font_size" />
|
2011-12-07 11:59:30 +00:00
|
|
|
|
2013-01-05 08:33:06 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="justify_article_text"
|
|
|
|
android:title="@string/justify_article_text" />
|
2012-09-23 17:14:01 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="use_volume_keys"
|
|
|
|
android:summary="@string/use_volume_keys_long"
|
|
|
|
android:title="@string/use_volume_keys" />
|
2012-10-09 09:16:05 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="dim_status_bar"
|
2012-12-04 07:04:08 +00:00
|
|
|
android:summary="@string/prefs_dim_status_bar_long"
|
2012-10-09 09:16:05 +00:00
|
|
|
android:title="@string/prefs_dim_status_bar" />
|
2013-01-05 08:33:06 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="full_screen_mode"
|
|
|
|
android:title="@string/prefs_fullscreen_mode" />
|
2012-09-23 17:14:01 +00:00
|
|
|
</PreferenceCategory>
|
2011-12-07 11:59:30 +00:00
|
|
|
<PreferenceCategory android:title="@string/offline_mode" >
|
2012-12-04 07:04:08 +00:00
|
|
|
<ListPreference
|
|
|
|
android:defaultValue="250"
|
|
|
|
android:entries="@array/pref_offline_amounts"
|
|
|
|
android:entryValues="@array/pref_offline_amounts"
|
|
|
|
android:key="offline_sync_max"
|
2013-03-17 15:57:57 +00:00
|
|
|
android:summary="@string/offline_articles_to_download_long"
|
|
|
|
android:title="@string/offline_articles_to_download" />
|
2013-01-05 08:33:06 +00:00
|
|
|
|
2011-12-07 11:59:30 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="offline_image_cache_enabled"
|
|
|
|
android:summary="@string/offline_image_cache_enabled_summary"
|
|
|
|
android:title="@string/offline_image_cache_enabled" />
|
2012-10-08 08:35:43 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="offline_oldest_first"
|
|
|
|
android:title="@string/offline_oldest_first" />
|
2011-12-07 11:59:30 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
<PreferenceCategory android:title="@string/debugging" >
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="transport_debugging"
|
|
|
|
android:title="@string/transport_debugging" />
|
|
|
|
</PreferenceCategory>
|
2011-09-08 10:23:44 +00:00
|
|
|
|
2013-03-21 06:03:50 +00:00
|
|
|
</PreferenceScreen>
|