aboutsummaryrefslogtreecommitdiffstats
path: root/libs/MemorizingTrustManager/example/res/layout/mtmexample.xml
diff options
context:
space:
mode:
authorSam Whited <sam@samwhited.com>2014-10-28 12:11:51 -0400
committerSam Whited <sam@samwhited.com>2014-10-28 12:11:51 -0400
commit41d2e72be7b36a7ee9a89e3f4a4ddec8b2e9c73e (patch)
treeaec475fe700b3f7ef371d8310dd26943e440d107 /libs/MemorizingTrustManager/example/res/layout/mtmexample.xml
parent89c294af11a22886b3e6be6ed0d6cfd98b3ea672 (diff)
parent9e42bff01440c1351946a432126d5a1b87fb7c78 (diff)
Subtree merged in MemorizingTrustManager
Diffstat (limited to 'libs/MemorizingTrustManager/example/res/layout/mtmexample.xml')
m---------libs/MemorizingTrustManager0
-rw-r--r--libs/MemorizingTrustManager/example/res/layout/mtmexample.xml36
2 files changed, 36 insertions, 0 deletions
diff --git a/libs/MemorizingTrustManager b/libs/MemorizingTrustManager
deleted file mode 160000
-Subproject fad835037adc1bd313bb56b694426fca4eb6734
diff --git a/libs/MemorizingTrustManager/example/res/layout/mtmexample.xml b/libs/MemorizingTrustManager/example/res/layout/mtmexample.xml
new file mode 100644
index 00000000..dfef58b6
--- /dev/null
+++ b/libs/MemorizingTrustManager/example/res/layout/mtmexample.xml
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="vertical"
+ android:layout_width="fill_parent"
+ android:layout_height="fill_parent" >
+ <EditText
+ android:id="@+id/url"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:hint="HTTPS address"
+ android:text="https://op-co.de/mtm/"
+ android:singleLine="true"
+ />
+ <Button
+ android:id="@+id/connect"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Connect"
+ />
+ <TextView
+ android:id="@+id/content"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:text="Please enter a HTTPS URL and press 'Connect'!"
+ android:textSize="11pt"
+ />
+ <Button
+ android:id="@+id/manage"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:text="Clean up Certificates"
+ android:onClick="onManage"
+ />
+</LinearLayout>
+