| Left: | ||
| Right: |
| 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:summary="@string/manage_subscriptions_summary" | 7 android:summary="@string/manage_subscriptions_summary" |
| 8 android:title="@string/manage_subscriptions" > | 8 android:title="@string/manage_subscriptions" > |
| 9 | 9 |
| 10 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa tegory | 10 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa tegory |
| 11 android:layout_width="fill_parent" | 11 android:layout_width="fill_parent" |
| 12 android:layout_height="wrap_content" | 12 android:layout_height="wrap_content" |
| 13 android:title="@string/enabled_subscriptions" /> | 13 android:title="@string/enabled_subscriptions" /> |
| 14 | 14 |
| 15 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa tegory | 15 <org.adblockplus.sbrowser.contentblocker.ListedSubscriptionsPreferenceCa tegory |
| 16 android:layout_width="fill_parent" | 16 android:layout_width="fill_parent" |
| 17 android:layout_height="wrap_content" | 17 android:layout_height="wrap_content" |
| 18 android:title="@string/available_subscriptions" /> | 18 android:title="@string/available_subscriptions" /> |
| 19 </PreferenceScreen> | 19 </PreferenceScreen> |
| 20 | 20 |
| 21 <PreferenceScreen | 21 <PreferenceScreen |
| 22 android:summary="@string/more_blocking_summary" | 22 android:summary="@string/more_blocking_summary" |
| 23 android:title="@string/more_blocking" > | 23 android:title="@string/more_blocking" > |
| 24 | 24 |
| 25 <org.adblockplus.sbrowser.contentblocker.MoreBlockingPreferenceCategory | 25 <org.adblockplus.sbrowser.contentblocker.MoreBlockingPreferenceCategory |
| 26 android:layout_width="fill_parent" | 26 android:layout_width="fill_parent" |
| 27 android:layout_height="wrap_content" | 27 android:layout_height="wrap_content" |
| 28 android:title="@string/more_blocking_category" /> | 28 android:title="@string/more_blocking_category" /> |
| 29 </PreferenceScreen> | 29 </PreferenceScreen> |
| 30 | 30 |
|
diegocarloslima
2017/05/25 18:53:56
Seems that the title is clipping for the Preferenc
jens
2017/05/30 12:17:00
Acknowledged.
| |
| 31 <PreferenceScreen | 31 <PreferenceScreen |
| 32 android:summary="@string/whitelisted_websites_summary" | 32 android:summary="@string/whitelisted_websites_summary" |
| 33 android:title="@string/whitelisted_websites"> | 33 android:title="@string/whitelisted_websites"> |
| 34 | 34 |
| 35 <org.adblockplus.sbrowser.contentblocker.WhitelistedWebsitesPreferenceCa tegory/> | 35 <org.adblockplus.sbrowser.contentblocker.WhitelistedWebsitesPreferenceCa tegory/> |
| 36 </PreferenceScreen> | 36 </PreferenceScreen> |
| 37 | 37 |
| 38 <ListPreference | 38 <org.adblockplus.sbrowser.contentblocker.preferences.MultilineListPreference |
| 39 android:layout_width="fill_parent" | 39 android:layout_width="fill_parent" |
| 40 android:layout_height="wrap_content" | 40 android:layout_height="wrap_content" |
| 41 android:defaultValue="1" | 41 android:defaultValue="1" |
| 42 android:entries="@array/download_settings" | 42 android:entries="@array/download_settings" |
| 43 android:entryValues="@array/download_settings_values" | 43 android:entryValues="@array/download_settings_values" |
| 44 android:key="@string/key_automatic_updates" | 44 android:key="@string/key_automatic_updates" |
| 45 android:title="@string/automatic_updates" /> | 45 android:title="@string/automatic_updates" /> |
| 46 | 46 |
| 47 <PreferenceCategory | 47 <PreferenceCategory |
| 48 android:layout_width="fill_parent" | 48 android:layout_width="fill_parent" |
| 49 android:layout_height="wrap_content" | 49 android:layout_height="wrap_content" |
| 50 android:title="@string/acceptable_ads_category" > | 50 android:title="@string/acceptable_ads_category" > |
| 51 | 51 |
| 52 <CheckBoxPreference | 52 <org.adblockplus.sbrowser.contentblocker.preferences.MultilineCheckBoxPr eference |
| 53 android:layout_width="fill_parent" | 53 android:layout_width="fill_parent" |
| 54 android:layout_height="wrap_content" | 54 android:layout_height="wrap_content" |
| 55 android:defaultValue="true" | 55 android:defaultValue="true" |
| 56 android:key="@string/key_acceptable_ads" | 56 android:key="@string/key_acceptable_ads" |
| 57 android:singleLine="false" | 57 android:singleLine="false" |
| 58 android:title="@string/enable_acceptable_ads" /> | 58 android:title="@string/enable_acceptable_ads" /> |
| 59 </PreferenceCategory> | 59 </PreferenceCategory> |
| 60 | 60 |
| 61 </PreferenceScreen> | 61 </PreferenceScreen> |
| OLD | NEW |