| OLD | NEW |
| (Empty) |
| 1 <?xml version="1.0" encoding="utf-8"?> | |
| 2 | |
| 3 <LinearLayout | |
| 4 xmlns:android="http://schemas.android.com/apk/res/android" | |
| 5 android:layout_width="match_parent" | |
| 6 android:layout_height="match_parent" | |
| 7 android:orientation="vertical"> | |
| 8 | |
| 9 <EditText | |
| 10 android:id="@+id/main_url" | |
| 11 android:layout_width="match_parent" | |
| 12 android:layout_height="wrap_content" | |
| 13 android:inputType="textUri" | |
| 14 android:maxLines="1"/> | |
| 15 | |
| 16 <LinearLayout | |
| 17 android:layout_width="match_parent" | |
| 18 android:layout_height="wrap_content" | |
| 19 android:orientation="horizontal"> | |
| 20 | |
| 21 <Button | |
| 22 android:id="@+id/main_ok" | |
| 23 android:layout_width="wrap_content" | |
| 24 android:layout_height="wrap_content" | |
| 25 android:text="@string/main_ok"/> | |
| 26 | |
| 27 <Button | |
| 28 android:id="@+id/main_back" | |
| 29 android:layout_width="50dp" | |
| 30 android:layout_height="wrap_content" | |
| 31 android:text="@string/main_prev"/> | |
| 32 | |
| 33 <Button | |
| 34 android:id="@+id/main_forward" | |
| 35 android:layout_width="50dp" | |
| 36 android:layout_height="wrap_content" | |
| 37 android:text="@string/main_next"/> | |
| 38 | |
| 39 <Button | |
| 40 android:id="@+id/main_settings" | |
| 41 android:layout_width="wrap_content" | |
| 42 android:layout_height="wrap_content" | |
| 43 android:text="@string/main_settings"/> | |
| 44 | |
| 45 </LinearLayout> | |
| 46 | |
| 47 <ProgressBar | |
| 48 android:id="@+id/main_progress" | |
| 49 android:layout_width="match_parent" | |
| 50 android:layout_height="wrap_content" | |
| 51 style="?android:attr/progressBarStyleHorizontal" | |
| 52 android:indeterminate="false" | |
| 53 android:indeterminateOnly="false" | |
| 54 android:max="100"/> | |
| 55 | |
| 56 <org.adblockplus.libadblockplus.android.webview.AdblockWebView | |
| 57 android:id="@+id/main_webview" | |
| 58 android:layout_width="match_parent" | |
| 59 android:layout_height="match_parent"/> | |
| 60 | |
| 61 </LinearLayout> | |
| OLD | NEW |