diff options
author | Parménides GV <parmegv@sdf.org> | 2015-06-10 19:45:06 +0200 |
---|---|---|
committer | Parménides GV <parmegv@sdf.org> | 2015-06-10 19:45:06 +0200 |
commit | 569defe3213fc4f9d6a61a98e35c794b2fe0d311 (patch) | |
tree | 1e9b01cbd5878bc5d3a905f6239916dc0185ccb9 /app/src/production/res | |
parent | 0e8fccf9ba9e509f1aaa65e58bc2cfd4754f90f4 (diff) | |
parent | 46638f7101e752be76bcafe061f4b5e68ee88088 (diff) |
Merge branch 'develop' into release-0.9.4
Diffstat (limited to 'app/src/production/res')
-rw-r--r-- | app/src/production/res/layout-xlarge/new_provider_dialog.xml | 19 | ||||
-rw-r--r-- | app/src/production/res/layout/new_provider_dialog.xml | 18 |
2 files changed, 37 insertions, 0 deletions
diff --git a/app/src/production/res/layout-xlarge/new_provider_dialog.xml b/app/src/production/res/layout-xlarge/new_provider_dialog.xml new file mode 100644 index 00000000..12616625 --- /dev/null +++ b/app/src/production/res/layout-xlarge/new_provider_dialog.xml @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" + android:textSize="24sp" > + + <EditText + android:id="@+id/new_provider_url" + android:inputType="textUri" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="16dp" + android:layout_marginLeft="4dp" + android:layout_marginRight="4dp" + android:textSize="24sp" + android:hint="@string/new_provider_uri" /> + +</LinearLayout> diff --git a/app/src/production/res/layout/new_provider_dialog.xml b/app/src/production/res/layout/new_provider_dialog.xml new file mode 100644 index 00000000..36eb0d6a --- /dev/null +++ b/app/src/production/res/layout/new_provider_dialog.xml @@ -0,0 +1,18 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="vertical" > + + <EditText + android:id="@+id/new_provider_url" + android:inputType="textUri" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:layout_marginTop="16dp" + android:layout_marginLeft="4dp" + android:layout_marginRight="4dp" + android:layout_marginBottom="4dp" + android:hint="@string/new_provider_uri" /> + +</LinearLayout> |