Revision 9e69afe0 res/layout/activity_main.xml

View differences:

res/layout/activity_main.xml
1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
1
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2 2
    xmlns:tools="http://schemas.android.com/tools"
3
    android:layout_width="match_parent"
4
    android:layout_height="match_parent" >
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>
5 47

  
6 48
    <fragment
7 49
        android:id="@+id/fragment_app_list"
50
        android:name="info.guardianproject.checkey.MainActivity$AppListFragment"
8 51
        android:layout_width="fill_parent"
9
        android:layout_height="fill_parent"
10
        class="info.guardianproject.checkey.AppListFragment" />
52
        android:layout_height="wrap_content" />
11 53

  
12
</RelativeLayout>
54
</LinearLayout>

Also available in: Unified diff