2014-01-12 21:33:37 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-05-05 22:06:09 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_width="match_parent"
|
2014-02-09 21:17:30 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 22:06:09 +02:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:orientation="horizontal"
|
2014-05-05 22:06:09 +02:00
|
|
|
android:paddingRight="3dip"
|
|
|
|
android:singleLine="true">
|
2014-01-12 21:33:37 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_masterKey"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-05-05 22:06:09 +02:00
|
|
|
android:src="@drawable/key_small"
|
|
|
|
android:layout_marginLeft="8dp" />
|
2014-03-25 05:26:35 +01:00
|
|
|
|
2014-01-12 21:33:37 +01:00
|
|
|
<LinearLayout
|
2014-05-05 22:06:09 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
2014-03-26 14:45:56 +02:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 22:06:09 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_marginRight="8dp">
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2014-03-18 16:07:17 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 22:06:09 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingBottom="2dip"
|
|
|
|
android:paddingTop="2dip">
|
2014-04-09 19:42:27 +02:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyId"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/label_key_id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:typeface="monospace"
|
|
|
|
android:layout_weight="1" />
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_certifyKey"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/certify_small"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_encryptKey"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/encrypted_small"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_signKey"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/signed_small"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_gravity="center_vertical" />
|
2014-04-09 19:42:27 +02:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/ic_revokedKey"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:src="@drawable/revoked_key_small"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_gravity="center_vertical" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyDetails"
|
|
|
|
android:layout_width="0dp"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingRight="5dip"
|
|
|
|
android:text="RSA, 1024bit"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyExpiry"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="Expiry: 4/7/2016"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:layout_gravity="right" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-04-09 19:42:27 +02:00
|
|
|
|
2014-05-05 22:06:09 +02:00
|
|
|
</LinearLayout>
|