checkey / res / layout / activity_main.xml @ e1b43d3a
History | View | Annotate | Download (8.08 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:padding="5dip" > |
| 11 |
|
| 12 |
<TableRow
|
| 13 |
android:layout_width="wrap_content" |
| 14 |
android:layout_height="wrap_content" > |
| 15 |
|
| 16 |
<LinearLayout
|
| 17 |
android:layout_width="wrap_content" |
| 18 |
android:layout_height="wrap_content" |
| 19 |
android:layout_gravity="right|center_vertical" > |
| 20 |
|
| 21 |
<TextView
|
| 22 |
android:layout_width="wrap_content" |
| 23 |
android:layout_height="match_parent" |
| 24 |
android:text="Key Type:" |
| 25 |
android:typeface="serif" /> |
| 26 |
</LinearLayout>
|
| 27 |
|
| 28 |
<LinearLayout
|
| 29 |
android:layout_width="wrap_content" |
| 30 |
android:layout_height="wrap_content" > |
| 31 |
|
| 32 |
<TextView
|
| 33 |
android:id="@+id/key_type" |
| 34 |
android:layout_width="wrap_content" |
| 35 |
android:layout_height="match_parent" |
| 36 |
android:paddingRight="15dip" |
| 37 |
android:textStyle="bold" /> |
| 38 |
|
| 39 |
<TextView
|
| 40 |
android:layout_width="wrap_content" |
| 41 |
android:layout_height="match_parent" |
| 42 |
android:layout_gravity="right|center_vertical" |
| 43 |
android:text="Signature Type:" |
| 44 |
android:typeface="serif" /> |
| 45 |
|
| 46 |
<TextView
|
| 47 |
android:id="@+id/signature_type" |
| 48 |
android:layout_width="wrap_content" |
| 49 |
android:layout_height="match_parent" |
| 50 |
android:paddingRight="15dip" |
| 51 |
android:textStyle="bold" /> |
| 52 |
|
| 53 |
<TextView
|
| 54 |
android:layout_width="wrap_content" |
| 55 |
android:layout_height="match_parent" |
| 56 |
android:layout_gravity="right|center_vertical" |
| 57 |
android:text="Version:" |
| 58 |
android:typeface="serif" /> |
| 59 |
|
| 60 |
<TextView
|
| 61 |
android:id="@+id/version" |
| 62 |
android:layout_width="wrap_content" |
| 63 |
android:layout_height="match_parent" |
| 64 |
android:textStyle="bold" /> |
| 65 |
</LinearLayout>
|
| 66 |
</TableRow>
|
| 67 |
|
| 68 |
<TableRow
|
| 69 |
android:layout_width="wrap_content" |
| 70 |
android:layout_height="wrap_content" > |
| 71 |
|
| 72 |
<LinearLayout
|
| 73 |
android:layout_width="wrap_content" |
| 74 |
android:layout_height="wrap_content" |
| 75 |
android:layout_gravity="right|center_vertical" > |
| 76 |
|
| 77 |
<TextView
|
| 78 |
android:layout_width="wrap_content" |
| 79 |
android:layout_height="match_parent" |
| 80 |
android:text="Created:" |
| 81 |
android:typeface="serif" /> |
| 82 |
</LinearLayout>
|
| 83 |
|
| 84 |
<LinearLayout
|
| 85 |
android:layout_width="wrap_content" |
| 86 |
android:layout_height="wrap_content" > |
| 87 |
|
| 88 |
<TextView
|
| 89 |
android:id="@+id/created" |
| 90 |
android:layout_width="wrap_content" |
| 91 |
android:layout_height="match_parent" |
| 92 |
android:paddingRight="15dip" |
| 93 |
android:textStyle="bold" /> |
| 94 |
|
| 95 |
<TextView
|
| 96 |
android:layout_width="wrap_content" |
| 97 |
android:layout_height="match_parent" |
| 98 |
android:layout_gravity="right|center_vertical" |
| 99 |
android:text="Expires:" |
| 100 |
android:typeface="serif" /> |
| 101 |
|
| 102 |
<TextView
|
| 103 |
android:id="@+id/expires" |
| 104 |
android:layout_width="wrap_content" |
| 105 |
android:layout_height="match_parent" |
| 106 |
android:textStyle="bold" /> |
| 107 |
</LinearLayout>
|
| 108 |
</TableRow>
|
| 109 |
|
| 110 |
<TableRow
|
| 111 |
android:layout_width="wrap_content" |
| 112 |
android:layout_height="wrap_content" > |
| 113 |
|
| 114 |
<TextView
|
| 115 |
android:layout_width="wrap_content" |
| 116 |
android:layout_height="wrap_content" |
| 117 |
android:layout_gravity="right|center_vertical" |
| 118 |
android:text="Subject:" |
| 119 |
android:typeface="serif" /> |
| 120 |
|
| 121 |
<TextView
|
| 122 |
android:id="@+id/subjectdn" |
| 123 |
android:layout_width="match_parent" |
| 124 |
android:layout_height="wrap_content" |
| 125 |
android:textStyle="bold" /> |
| 126 |
</TableRow>
|
| 127 |
|
| 128 |
<TableRow
|
| 129 |
android:layout_width="wrap_content" |
| 130 |
android:layout_height="wrap_content" > |
| 131 |
|
| 132 |
<TextView
|
| 133 |
android:layout_width="wrap_content" |
| 134 |
android:layout_height="wrap_content" |
| 135 |
android:layout_gravity="right|center_vertical" |
| 136 |
android:text="Issuer:" |
| 137 |
android:typeface="serif" /> |
| 138 |
|
| 139 |
<TextView
|
| 140 |
android:id="@+id/issuerdn" |
| 141 |
android:layout_width="match_parent" |
| 142 |
android:layout_height="wrap_content" |
| 143 |
android:textStyle="bold" /> |
| 144 |
</TableRow>
|
| 145 |
|
| 146 |
<TableRow
|
| 147 |
android:layout_width="wrap_content" |
| 148 |
android:layout_height="wrap_content" > |
| 149 |
|
| 150 |
<TextView
|
| 151 |
android:layout_width="wrap_content" |
| 152 |
android:layout_height="wrap_content" |
| 153 |
android:layout_gravity="right|center_vertical" |
| 154 |
android:text="Serial:" |
| 155 |
android:typeface="serif" /> |
| 156 |
|
| 157 |
<TextView
|
| 158 |
android:id="@+id/serial" |
| 159 |
android:layout_width="match_parent" |
| 160 |
android:layout_height="wrap_content" |
| 161 |
android:textStyle="bold" /> |
| 162 |
</TableRow>
|
| 163 |
|
| 164 |
<TableRow
|
| 165 |
android:layout_width="wrap_content" |
| 166 |
android:layout_height="wrap_content" > |
| 167 |
|
| 168 |
<TextView
|
| 169 |
android:layout_width="wrap_content" |
| 170 |
android:layout_height="wrap_content" |
| 171 |
android:layout_gravity="right|center_vertical" |
| 172 |
android:text="MD5:" |
| 173 |
android:typeface="serif" /> |
| 174 |
|
| 175 |
<TextView
|
| 176 |
android:id="@+id/MD5" |
| 177 |
android:layout_width="match_parent" |
| 178 |
android:layout_height="wrap_content" |
| 179 |
android:textStyle="bold" |
| 180 |
android:typeface="monospace" /> |
| 181 |
</TableRow>
|
| 182 |
|
| 183 |
<TableRow
|
| 184 |
android:layout_width="wrap_content" |
| 185 |
android:layout_height="wrap_content" > |
| 186 |
|
| 187 |
<TextView
|
| 188 |
android:layout_width="wrap_content" |
| 189 |
android:layout_height="wrap_content" |
| 190 |
android:layout_gravity="right|center_vertical" |
| 191 |
android:text="SHA1:" |
| 192 |
android:typeface="serif" /> |
| 193 |
|
| 194 |
<TextView
|
| 195 |
android:id="@+id/sha1" |
| 196 |
android:layout_width="match_parent" |
| 197 |
android:layout_height="wrap_content" |
| 198 |
android:textStyle="bold" |
| 199 |
android:typeface="monospace" /> |
| 200 |
</TableRow>
|
| 201 |
|
| 202 |
<TableRow
|
| 203 |
android:layout_width="wrap_content" |
| 204 |
android:layout_height="wrap_content" > |
| 205 |
|
| 206 |
<TextView
|
| 207 |
android:layout_width="wrap_content" |
| 208 |
android:layout_height="wrap_content" |
| 209 |
android:layout_gravity="right|center_vertical" |
| 210 |
android:text="SHA256:" |
| 211 |
android:typeface="serif" /> |
| 212 |
|
| 213 |
<TextView
|
| 214 |
android:id="@+id/sha256" |
| 215 |
android:layout_width="match_parent" |
| 216 |
android:layout_height="wrap_content" |
| 217 |
android:textStyle="bold" |
| 218 |
android:typeface="monospace" /> |
| 219 |
</TableRow>
|
| 220 |
</TableLayout>
|
| 221 |
|
| 222 |
<fragment
|
| 223 |
android:id="@+id/fragment_app_list" |
| 224 |
android:name="info.guardianproject.checkey.MainActivity$AppListFragment" |
| 225 |
android:layout_width="fill_parent" |
| 226 |
android:layout_height="wrap_content" /> |
| 227 |
|
| 228 |
</LinearLayout>
|