| 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     <LinearLayout | 
|  | 10         android:layout_width="match_parent" | 
|  | 11         android:layout_height="wrap_content" | 
|  | 12         android:orientation="horizontal"> | 
|  | 13 | 
|  | 14         <EditText | 
|  | 15             android:id="@+id/main_url" | 
|  | 16             android:layout_width="0px" | 
|  | 17             android:layout_weight="1" | 
|  | 18             android:layout_height="wrap_content" | 
|  | 19             android:text="http://worddictionary.co.uk" | 
|  | 20             android:singleLine="true"/> | 
|  | 21 | 
|  | 22         <Button | 
|  | 23             android:id="@+id/main_ok" | 
|  | 24             android:layout_width="wrap_content" | 
|  | 25             android:layout_height="wrap_content" | 
|  | 26             android:text="@string/main_ok"/> | 
|  | 27 | 
|  | 28     </LinearLayout> | 
|  | 29 | 
|  | 30     <ProgressBar | 
|  | 31         android:id="@+id/main_progress" | 
|  | 32         android:layout_width="match_parent" | 
|  | 33         android:layout_height="wrap_content" | 
|  | 34         style="?android:attr/progressBarStyleHorizontal" | 
|  | 35         android:indeterminate="false" | 
|  | 36         android:indeterminateOnly="false" | 
|  | 37         android:max="100"/> | 
|  | 38 | 
|  | 39     <org.adblockplus.android.AdblockWebView | 
|  | 40         android:id="@+id/main_webview" | 
|  | 41         android:layout_width="match_parent" | 
|  | 42         android:layout_height="match_parent"/> | 
|  | 43 | 
|  | 44 </LinearLayout> | 
| OLD | NEW | 
|---|