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-08-31 20:39:36 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:padding="4dp"
|
|
|
|
android:minHeight="24dp"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyspinner_key_name"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textSize="18sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyspinner_key_email"
|
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:layout_marginTop="-4dip"
|
|
|
|
android:text="alice@example.com" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/keyspinner_key_id"
|
|
|
|
android:textColor="?android:attr/textColorTertiary"
|
|
|
|
android:textSize="14sp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:typeface="monospace"
|
|
|
|
android:layout_marginTop="-4dip" />
|
2014-07-20 17:09:34 +02:00
|
|
|
</LinearLayout>
|