2014-07-20 17:09:34 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-09-17 23:06:49 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-08-31 20:39:36 +02:00
|
|
|
android:minHeight="24dp"
|
2014-09-17 23:06:49 +02:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:descendantFocusability="blocksDescendants"
|
|
|
|
android:focusable="false">
|
2014-08-31 20:39:36 +02:00
|
|
|
|
2014-09-17 23:06:49 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="0dip"
|
2014-08-31 20:39:36 +02:00
|
|
|
android:layout_height="wrap_content"
|
2014-09-17 23:06:49 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:focusable="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:paddingTop="4dp"
|
|
|
|
android:paddingBottom="4dp">
|
2014-08-31 20:39:36 +02:00
|
|
|
|
2014-09-17 23:06:49 +02:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyspinner_key_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/label_main_user_id"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
2014-09-07 18:49:10 +02:00
|
|
|
|
|
|
|
<TextView
|
2014-09-17 23:06:49 +02:00
|
|
|
android:id="@+id/keyspinner_key_email"
|
|
|
|
android:layout_width="wrap_content"
|
2014-09-07 18:49:10 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2014-09-17 23:06:49 +02:00
|
|
|
android:text="user@example.com"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2014-09-07 18:49:10 +02:00
|
|
|
|
|
|
|
<TextView
|
2014-09-17 23:06:49 +02:00
|
|
|
android:id="@+id/keyspinner_key_id"
|
|
|
|
android:text="12345"
|
2014-09-07 18:49:10 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
2014-09-17 23:06:49 +02:00
|
|
|
android:typeface="monospace"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"/>
|
2014-09-07 18:49:10 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-09-17 23:06:49 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/keyspinner_key_status"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:src="@drawable/status_signature_revoked_cutout"
|
|
|
|
android:padding="16dp" />
|
|
|
|
|
2014-07-20 17:09:34 +02:00
|
|
|
</LinearLayout>
|