2014-03-11 03:19:41 +01:00
|
|
|
<?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="wrap_content"
|
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:focusable="false">
|
|
|
|
|
|
|
|
<TextView
|
2014-05-05 00:58:22 +02:00
|
|
|
android:id="@+id/signerName"
|
2014-03-11 03:19:41 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:text="signer name"
|
2014-03-11 03:19:41 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true" />
|
|
|
|
|
|
|
|
<TextView
|
2014-05-05 00:58:22 +02:00
|
|
|
android:id="@+id/signerKeyId"
|
2014-03-11 03:19:41 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="<user@example.com>"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:layout_below="@+id/signerName"
|
2014-03-11 03:19:41 +01:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentStart="true" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/signStatus"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:text="status"
|
|
|
|
android:visibility="visible"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:layout_above="@+id/signerKeyId"
|
2014-03-11 03:19:41 +01:00
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_marginRight="10dp" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|