| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" | 2 <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 android:layout_width="fill_parent" | 3 android:layout_width="fill_parent" |
| 4 android:layout_height="fill_parent" > | 4 android:layout_height="fill_parent" > |
| 5 | 5 |
| 6 <PreferenceScreen | 6 <PreferenceScreen |
| 7 android:layout="@layout/multiline_preference" |
| 7 android:summary="@string/manage_subscriptions_summary" | 8 android:summary="@string/manage_subscriptions_summary" |
| 8 android:title="@string/manage_subscriptions" > | 9 android:title="@string/manage_subscriptions" > |
| 9 | 10 |
| 10 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa
tegory | 11 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa
tegory |
| 11 android:layout_width="fill_parent" | 12 android:layout_width="fill_parent" |
| 12 android:layout_height="wrap_content" | 13 android:layout_height="wrap_content" |
| 13 android:title="@string/enabled_subscriptions" /> | 14 android:title="@string/enabled_subscriptions" /> |
| 14 | 15 |
| 15 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa
tegory | 16 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa
tegory |
| 16 android:layout_width="fill_parent" | 17 android:layout_width="fill_parent" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 28 android:title="@string/more_blocking_category" /> | 29 android:title="@string/more_blocking_category" /> |
| 29 </PreferenceScreen> | 30 </PreferenceScreen> |
| 30 | 31 |
| 31 <PreferenceScreen | 32 <PreferenceScreen |
| 32 android:summary="@string/whitelisted_websites_summary" | 33 android:summary="@string/whitelisted_websites_summary" |
| 33 android:title="@string/whitelisted_websites"> | 34 android:title="@string/whitelisted_websites"> |
| 34 | 35 |
| 35 <org.adblockplus.sbrowser.contentblocker.WhitelistedWebsitesPreferenceCa
tegory/> | 36 <org.adblockplus.sbrowser.contentblocker.WhitelistedWebsitesPreferenceCa
tegory/> |
| 36 </PreferenceScreen> | 37 </PreferenceScreen> |
| 37 | 38 |
| 38 <ListPreference | 39 <org.adblockplus.sbrowser.contentblocker.preferences.MultilineListPreference |
| 39 android:layout_width="fill_parent" | 40 android:layout_width="fill_parent" |
| 40 android:layout_height="wrap_content" | 41 android:layout_height="wrap_content" |
| 41 android:defaultValue="1" | 42 android:defaultValue="1" |
| 42 android:entries="@array/download_settings" | 43 android:entries="@array/download_settings" |
| 43 android:entryValues="@array/download_settings_values" | 44 android:entryValues="@array/download_settings_values" |
| 44 android:key="@string/key_automatic_updates" | 45 android:key="@string/key_automatic_updates" |
| 45 android:title="@string/automatic_updates" /> | 46 android:title="@string/automatic_updates" /> |
| 46 | 47 |
| 47 <PreferenceCategory | 48 <PreferenceCategory |
| 48 android:layout_width="fill_parent" | 49 android:layout_width="fill_parent" |
| 49 android:layout_height="wrap_content" | 50 android:layout_height="wrap_content" |
| 50 android:title="@string/acceptable_ads_category" > | 51 android:title="@string/acceptable_ads_category" > |
| 51 | 52 |
| 52 <CheckBoxPreference | 53 <org.adblockplus.sbrowser.contentblocker.preferences.MultilineCheckBoxPr
eference |
| 53 android:layout_width="fill_parent" | 54 android:layout_width="fill_parent" |
| 54 android:layout_height="wrap_content" | 55 android:layout_height="wrap_content" |
| 55 android:defaultValue="true" | 56 android:defaultValue="true" |
| 56 android:key="@string/key_acceptable_ads" | 57 android:key="@string/key_acceptable_ads" |
| 57 android:singleLine="false" | 58 android:singleLine="false" |
| 58 android:title="@string/enable_acceptable_ads" /> | 59 android:title="@string/enable_acceptable_ads" /> |
| 59 </PreferenceCategory> | 60 </PreferenceCategory> |
| 60 | 61 |
| 61 </PreferenceScreen> | 62 </PreferenceScreen> |
| OLD | NEW |