| OLD | NEW |
| 1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
| 2 <!-- |
| 3 - This file is part of the Adblock Plus <https://adblockplus.org/>, |
| 4 - Copyright (C) 2006-present eyeo GmbH |
| 5 - |
| 6 - Adblock Plus is free software: you can redistribute it and/or modify |
| 7 - it under the terms of the GNU General Public License version 3 as |
| 8 - published by the Free Software Foundation. |
| 9 - |
| 10 - Adblock Plus is distributed in the hope that it will be useful, |
| 11 - but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 - GNU General Public License for more details. |
| 14 - |
| 15 - You should have received a copy of the GNU General Public License |
| 16 - along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 17 --> |
| 18 |
| 2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 19 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 android:layout_width="fill_parent" | 20 android:layout_width="fill_parent" |
| 4 android:layout_height="wrap_content" | 21 android:layout_height="wrap_content" |
| 5 android:minHeight="?android:attr/listPreferredItemHeight" | 22 android:minHeight="?android:attr/listPreferredItemHeight" |
| 6 android:gravity="center_vertical" | 23 android:gravity="center_vertical" |
| 7 android:paddingRight="?android:attr/scrollbarSize" > | 24 android:paddingRight="?android:attr/scrollbarSize" > |
| 8 | 25 |
| 9 <LinearLayout | 26 <LinearLayout |
| 10 android:layout_width="match_parent" | 27 android:layout_width="match_parent" |
| 11 android:layout_height="wrap_content" | 28 android:layout_height="wrap_content" |
| (...skipping 16 matching lines...) Expand all Loading... |
| 28 android:paddingRight="10dp" | 45 android:paddingRight="10dp" |
| 29 android:textAppearance="?android:attr/textAppearanceLarge" | 46 android:textAppearance="?android:attr/textAppearanceLarge" |
| 30 android:textColor="#9a9a9a" | 47 android:textColor="#9a9a9a" |
| 31 android:text=">" | 48 android:text=">" |
| 32 android:gravity="right" /> | 49 android:gravity="right" /> |
| 33 | 50 |
| 34 </LinearLayout> | 51 </LinearLayout> |
| 35 | 52 |
| 36 </LinearLayout> | 53 </LinearLayout> |
| 37 | 54 |
| OLD | NEW |