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>
|
|
|
|
|
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="ssl_trust_any"
|
|
|
|
android:title="@string/ssl_trust_any" />
|
|
|
|
</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-03-21 06:38:58 +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
|
|
|
<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
|
|
|
<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"
|
|
|
|
android:key="browse_cats_like_feeds"
|
2012-03-21 06:38:58 +00:00
|
|
|
android:dependency="enable_cats"
|
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 18:57:10 +00:00
|
|
|
<!-- <CheckBoxPreference
|
2011-12-07 11:59:30 +00:00
|
|
|
android:defaultValue="false"
|
|
|
|
android:key="combined_mode"
|
|
|
|
android:summary="@string/combined_mode_summary"
|
2012-09-19 18:57:10 +00:00
|
|
|
android:title="@string/combined_mode" /> -->
|
2012-03-01 08:30:54 +00:00
|
|
|
|
2012-03-21 06:18:20 +00:00
|
|
|
<CheckBoxPreference
|
|
|
|
android:defaultValue="true"
|
|
|
|
android:key="justify_article_text"
|
|
|
|
android:title="@string/justify_article_text" />
|
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" />
|
|
|
|
|
2011-12-07 11:59:30 +00:00
|
|
|
</PreferenceCategory>
|
|
|
|
|
|
|
|
<PreferenceCategory android:title="@string/offline_mode" >
|
|
|
|
|
|
|
|
<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" />
|
|
|
|
</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
|
|
|
|
|
|
|
</PreferenceScreen>
|