| OLD | NEW | 
| (Empty) |  | 
 |   1 <?xml version="1.0" encoding="utf-8"?> | 
 |   2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
 |   3               android:layout_width="match_parent" | 
 |   4               android:layout_height="match_parent" | 
 |   5               android:orientation="vertical" | 
 |   6               android:padding="6dp" > | 
 |   7   | 
 |   8     <EditText android:id="@+id/abb_listadd_textinput" | 
 |   9               android:layout_width="match_parent" | 
 |  10               android:layout_height="wrap_content" | 
 |  11               android:layout_marginTop="8dp" | 
 |  12               android:layout_marginBottom="8dp" | 
 |  13               android:inputType="textUri" | 
 |  14               android:paddingLeft="4dp" | 
 |  15               android:paddingRight="4dp" | 
 |  16               android:paddingTop="10dp" | 
 |  17               android:paddingBottom="10dp" | 
 |  18               android:background="@drawable/abb_edittext_bkg" | 
 |  19               android:hint="filler" | 
 |  20               android:focusable="true" /> | 
 |  21  | 
 |  22     <Button android:id="@+id/abb_listadd_button" | 
 |  23             android:layout_width="match_parent" | 
 |  24             android:layout_height="wrap_content" | 
 |  25             android:textAppearance="?android:attr/textAppearanceMedium" | 
 |  26             android:gravity="center" | 
 |  27             android:text="filler" | 
 |  28             android:background="#ff0099cc" | 
 |  29             android:textColor="#f8f8f8" | 
 |  30             android:focusable="false" /> | 
 |  31  | 
 |  32 </LinearLayout> | 
 |  33  | 
| OLD | NEW |