You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
614 B
21 lines
614 B
12 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" >
|
||
|
|
||
|
<EditTextPreference
|
||
|
android:key="rssfeed_name"
|
||
|
android:title="@string/pref_name"
|
||
|
android:summary="@string/pref_name_optional"
|
||
|
android:inputType="textNoSuggestions" />
|
||
|
|
||
|
<EditTextPreference
|
||
|
android:key="rssfeed_url"
|
||
|
android:title="@string/pref_feedurl"
|
||
|
android:inputType="textUri" />
|
||
|
|
||
|
<CheckBoxPreference
|
||
|
android:key="rssfeed_reqauth"
|
||
|
android:title="@string/pref_reqauth"
|
||
|
android:summary="@string/pref_reqauth_info"
|
||
|
android:defaultValue="false" />
|
||
|
|
||
|
</PreferenceScreen>
|