mtmexample.xml

 1<?xml version="1.0" encoding="utf-8"?>
 2<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 3	android:orientation="vertical"
 4	android:layout_width="fill_parent"
 5	android:layout_height="fill_parent" >
 6	<EditText
 7		android:id="@+id/url" 
 8		android:layout_width="fill_parent" 
 9		android:layout_height="wrap_content" 
10		android:hint="HTTPS address"
11		android:text="https://op-co.de/mtm/"
12		android:singleLine="true"
13		/>
14	<Button
15		android:id="@+id/connect" 
16		android:layout_width="fill_parent" 
17		android:layout_height="wrap_content" 
18		android:text="Connect"
19		/>
20	<TextView
21		android:id="@+id/content" 
22		android:layout_width="fill_parent" 
23		android:layout_height="wrap_content" 
24		android:layout_weight="1"
25		android:text="Please enter a HTTPS URL and press 'Connect'!"
26		android:textSize="11pt"
27		/>
28	<Button
29		android:id="@+id/manage" 
30		android:layout_width="fill_parent" 
31		android:layout_height="wrap_content" 
32		android:text="Clean up Certificates"
33		android:onClick="onManage"
34		/>
35</LinearLayout>
36