2015-03-05 01:58:36 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout 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:orientation="horizontal"
|
|
|
|
|
android:singleLine="true">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:layout_width="0dip"
|
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
|
android:layout_marginTop="4dp"
|
|
|
|
|
android:layout_marginBottom="4dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/linked_id_uri"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="uri"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/user_id_item_comment"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="@color/tertiary_text_light"
|
|
|
|
|
android:text="unknown linked identity type"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/user_id_item_certified_layout"
|
|
|
|
|
android:layout_width="22dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-05 13:13:43 +01:00
|
|
|
android:layout_marginRight="12dp"
|
|
|
|
|
android:layout_marginEnd="12dp"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/user_id_item_certified"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2015-03-05 12:10:51 +01:00
|
|
|
android:src="@drawable/status_signature_unverified_cutout_24dp"
|
2015-03-05 01:58:36 +01:00
|
|
|
android:layout_gravity="center_horizontal" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|