| Index: mobile/android/base/resources/layout/abb_url_input_dialog.xml | 
| diff --git a/mobile/android/base/resources/layout/abb_url_input_dialog.xml b/mobile/android/base/resources/layout/abb_url_input_dialog.xml | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..0890eddffcf7d61a0e7fdda16d2501f22d3aa85b | 
| --- /dev/null | 
| +++ b/mobile/android/base/resources/layout/abb_url_input_dialog.xml | 
| @@ -0,0 +1,33 @@ | 
| +<?xml version="1.0" encoding="utf-8"?> | 
| +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
| + android:layout_width="match_parent" | 
| + android:layout_height="match_parent" | 
| + android:orientation="vertical" | 
| + android:padding="6dp" > | 
| + | 
| + <EditText android:id="@+id/abb_listadd_textinput" | 
| + android:layout_width="match_parent" | 
| + android:layout_height="wrap_content" | 
| + android:layout_marginTop="8dp" | 
| + android:layout_marginBottom="8dp" | 
| + android:inputType="textUri" | 
| + android:paddingLeft="4dp" | 
| + android:paddingRight="4dp" | 
| + android:paddingTop="10dp" | 
| + android:paddingBottom="10dp" | 
| + android:background="@drawable/abb_edittext_bkg" | 
| + android:hint="filler" | 
| + android:focusable="true" /> | 
| + | 
| + <Button android:id="@+id/abb_listadd_button" | 
| + android:layout_width="match_parent" | 
| + android:layout_height="wrap_content" | 
| + android:textAppearance="?android:attr/textAppearanceMedium" | 
| + android:gravity="center" | 
| + android:text="filler" | 
| + android:background="#ff0099cc" | 
| + android:textColor="#f8f8f8" | 
| + android:focusable="false" /> | 
| + | 
| +</LinearLayout> | 
| + |