summaryrefslogtreecommitdiff
path: root/app/src/insecure/res
diff options
context:
space:
mode:
authorParménides GV <parmegv@sdf.org>2015-06-10 19:45:06 +0200
committerParménides GV <parmegv@sdf.org>2015-06-10 19:45:06 +0200
commit569defe3213fc4f9d6a61a98e35c794b2fe0d311 (patch)
tree1e9b01cbd5878bc5d3a905f6239916dc0185ccb9 /app/src/insecure/res
parent0e8fccf9ba9e509f1aaa65e58bc2cfd4754f90f4 (diff)
parent46638f7101e752be76bcafe061f4b5e68ee88088 (diff)
Merge branch 'develop' into release-0.9.4
Diffstat (limited to 'app/src/insecure/res')
-rw-r--r--app/src/insecure/res/layout-xlarge/new_provider_dialog.xml26
-rw-r--r--app/src/insecure/res/layout/new_provider_dialog.xml24
-rw-r--r--app/src/insecure/res/values/strings.xml4
3 files changed, 54 insertions, 0 deletions
diff --git a/app/src/insecure/res/layout-xlarge/new_provider_dialog.xml b/app/src/insecure/res/layout-xlarge/new_provider_dialog.xml
new file mode 100644
index 00000000..fc7d84ab
--- /dev/null
+++ b/app/src/insecure/res/layout-xlarge/new_provider_dialog.xml
@@ -0,0 +1,26 @@
+<?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" />
+
+ <CheckBox
+ android:id="@+id/danger_checkbox"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:textSize="24sp"
+ android:text="@string/danger_checkbox" />
+
+</LinearLayout> \ No newline at end of file
diff --git a/app/src/insecure/res/layout/new_provider_dialog.xml b/app/src/insecure/res/layout/new_provider_dialog.xml
new file mode 100644
index 00000000..19b8f442
--- /dev/null
+++ b/app/src/insecure/res/layout/new_provider_dialog.xml
@@ -0,0 +1,24 @@
+<?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" />
+
+ <CheckBox
+ android:id="@+id/danger_checkbox"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="@string/danger_checkbox" />
+
+</LinearLayout> \ No newline at end of file
diff --git a/app/src/insecure/res/values/strings.xml b/app/src/insecure/res/values/strings.xml
new file mode 100644
index 00000000..3e568115
--- /dev/null
+++ b/app/src/insecure/res/values/strings.xml
@@ -0,0 +1,4 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+ <string name="danger_checkbox">Skip security check</string>
+</resources>