checkey / res / layout / activity_main.xml @ 9e69afe0
History | View | Annotate | Download (1.83 KB)
1 |
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
---|---|
2 |
xmlns:tools="http://schemas.android.com/tools" |
3 |
android:layout_width="fill_parent" |
4 |
android:layout_height="fill_parent" |
5 |
android:orientation="vertical" > |
6 |
|
7 |
<TableLayout
|
8 |
android:layout_width="match_parent" |
9 |
android:layout_height="wrap_content" |
10 |
android:paddingBottom="5dip" |
11 |
android:paddingTop="5dip" > |
12 |
|
13 |
<TableRow
|
14 |
android:layout_width="wrap_content" |
15 |
android:layout_height="wrap_content" > |
16 |
|
17 |
<TextView
|
18 |
android:layout_width="wrap_content" |
19 |
android:layout_height="wrap_content" |
20 |
android:layout_gravity="right|center_vertical" |
21 |
android:text="SubjectDN:" |
22 |
android:typeface="monospace" /> |
23 |
|
24 |
<TextView
|
25 |
android:id="@+id/subjectdn" |
26 |
android:layout_width="wrap_content" |
27 |
android:layout_height="wrap_content" /> |
28 |
</TableRow>
|
29 |
|
30 |
<TableRow
|
31 |
android:layout_width="wrap_content" |
32 |
android:layout_height="wrap_content" > |
33 |
|
34 |
<TextView
|
35 |
android:layout_width="wrap_content" |
36 |
android:layout_height="wrap_content" |
37 |
android:layout_gravity="right|center_vertical" |
38 |
android:text="IssuerDN:" |
39 |
android:typeface="monospace" /> |
40 |
|
41 |
<TextView
|
42 |
android:id="@+id/issuerdn" |
43 |
android:layout_width="wrap_content" |
44 |
android:layout_height="wrap_content" /> |
45 |
</TableRow>
|
46 |
</TableLayout>
|
47 |
|
48 |
<fragment
|
49 |
android:id="@+id/fragment_app_list" |
50 |
android:name="info.guardianproject.checkey.MainActivity$AppListFragment" |
51 |
android:layout_width="fill_parent" |
52 |
android:layout_height="wrap_content" /> |
53 |
|
54 |
</LinearLayout>
|