| 1 | <?xml version="1.0" encoding="utf-8"?>
|
|---|
| 2 | <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" xmlns:switchpref="http://schemas.android.com/apk/res-auto">
|
|---|
| 3 |
|
|---|
| 4 | <org.jraf.android.backport.switchwidget.SwitchPreference
|
|---|
| 5 | android:key="@string/pref_enabled"
|
|---|
| 6 | switchpref:summaryOff="@string/pref_enabled_summary_off"
|
|---|
| 7 | switchpref:summaryOn="@string/pref_enabled_summary_on"
|
|---|
| 8 | android:title="@string/pref_enabled_title" />
|
|---|
| 9 |
|
|---|
| 10 | <org.adblockplus.android.RefreshableListPreference
|
|---|
| 11 | android:key="@string/pref_subscription"
|
|---|
| 12 | android:title="@string/pref_subscription_title" />
|
|---|
| 13 |
|
|---|
| 14 | <org.adblockplus.android.HelpfulCheckBoxPreference
|
|---|
| 15 | android:key="@string/pref_acceptableads"
|
|---|
| 16 | android:summaryOff="@string/pref_acceptableads_summary_off"
|
|---|
| 17 | android:summaryOn="@string/pref_acceptableads_summary_on"
|
|---|
| 18 | android:title="@string/pref_acceptableads_title"
|
|---|
| 19 | android:widgetLayout="@layout/helpfulcheckbox_layout" />
|
|---|
| 20 |
|
|---|
| 21 | <CheckBoxPreference
|
|---|
| 22 | android:key="@string/pref_hideicon"
|
|---|
| 23 | android:summaryOff="@string/pref_hideicon_summary_off"
|
|---|
| 24 | android:summaryOn="@string/pref_hideicon_summary_on"
|
|---|
| 25 | android:title="@string/pref_hideicon_title"
|
|---|
| 26 | android:widgetLayout="@layout/hideicon_layout" />
|
|---|
| 27 |
|
|---|
| 28 | </PreferenceScreen> |
|---|