blob: 3c16566a3721f612cc5af883b251c483fe9eef6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/dialogHeader"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="@string/enter_tlscn_dialog" />
<Spinner
android:id="@+id/x509verifytype"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/dialogHeader"
android:layout_toRightOf="@+id/textView1" />
<EditText
android:id="@+id/tlsremotecn"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@id/x509verifytype"
android:layout_marginTop="20dp"
android:ems="10"
android:inputType="text" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:textAppearance="?android:attr/textAppearanceSmall" />
</RelativeLayout>
|