| 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="match_parent" | 20 android:layout_width="match_parent" |
| 4 android:layout_height="match_parent" | 21 android:layout_height="match_parent" |
| 5 android:orientation="vertical" | 22 android:orientation="vertical" |
| 6 android:background="#ffffff" | 23 android:background="#ffffff" |
| 7 android:padding="10dp" > | 24 android:padding="10dp" > |
| 8 <!-- Main content view, filled dynamically --> | 25 <!-- Main content view, filled dynamically --> |
| 9 <LinearLayout android:id="@+id/abb_main_content" | 26 <LinearLayout android:id="@+id/abb_main_content" |
| 10 android:layout_width="match_parent" | 27 android:layout_width="match_parent" |
| 11 android:layout_height="0dip" | 28 android:layout_height="0dip" |
| (...skipping 11 matching lines...) Expand all Loading... |
| 23 android:layout_height="wrap_content" | 40 android:layout_height="wrap_content" |
| 24 android:gravity="center" | 41 android:gravity="center" |
| 25 android:text="filler" | 42 android:text="filler" |
| 26 android:background="@drawable/abb_start_pane_button" | 43 android:background="@drawable/abb_start_pane_button" |
| 27 android:drawableRight="@drawable/abb_right_arrow" | 44 android:drawableRight="@drawable/abb_right_arrow" |
| 28 android:textColor="#f8f8f8" | 45 android:textColor="#f8f8f8" |
| 29 android:textSize="24sp" | 46 android:textSize="24sp" |
| 30 android:layout_centerInParent="true" /> | 47 android:layout_centerInParent="true" /> |
| 31 </LinearLayout> | 48 </LinearLayout> |
| 32 | 49 |
| OLD | NEW |