2014-01-12 21:33:37 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2014-02-09 21:17:30 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2014-03-15 13:22:02 +01:00
|
|
|
android:orientation="horizontal"
|
2014-02-09 21:17:30 +01:00
|
|
|
android:singleLine="true">
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-06-22 18:12:04 +02:00
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/has_changes"
|
2014-03-15 13:22:02 +01:00
|
|
|
android:layout_width="wrap_content"
|
2014-04-11 16:09:51 +02:00
|
|
|
android:layout_height="match_parent"
|
2014-06-22 18:12:04 +02:00
|
|
|
android:minWidth="10dp"
|
|
|
|
|
android:background="@color/emphasis" />
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
2014-04-06 02:27:21 +02:00
|
|
|
android:id="@+id/checkBox"
|
2014-06-22 18:12:04 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
2014-04-06 02:27:21 +02:00
|
|
|
android:clickable="false"
|
|
|
|
|
android:focusable="false" />
|
2014-03-15 13:22:02 +01:00
|
|
|
|
2014-05-05 00:58:22 +02:00
|
|
|
<LinearLayout
|
2014-05-07 03:19:09 +02:00
|
|
|
android:layout_width="22dp"
|
2014-01-12 21:33:37 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:layout_marginLeft="8dp"
|
2014-04-06 02:27:21 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/certified"
|
2014-05-07 03:19:09 +02:00
|
|
|
android:src="@drawable/key_certify_ok_self"
|
|
|
|
|
android:layout_gravity="center_horizontal" />
|
2014-05-05 00:58:22 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-03-15 13:22:02 +01:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:orientation="vertical"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-04-11 16:09:51 +02:00
|
|
|
android:layout_width="0dip"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:layout_marginLeft="8dp"
|
2014-03-15 19:58:17 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1">
|
2014-03-15 13:22:02 +01:00
|
|
|
|
2014-05-05 00:58:22 +02:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/address"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="alice@example.com"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
|
|
|
|
2014-03-15 13:22:02 +01:00
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/userId"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-11 16:09:51 +02:00
|
|
|
android:text="Alice"
|
2014-03-15 13:22:02 +01:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
2014-05-05 00:58:22 +02:00
|
|
|
android:id="@+id/comment"
|
2014-03-15 13:22:02 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-05 00:58:22 +02:00
|
|
|
android:textColor="@color/tertiary_text_light"
|
|
|
|
|
android:text="comment"
|
2014-04-09 19:42:27 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2014-03-15 19:58:17 +01:00
|
|
|
|
2014-03-15 13:22:02 +01:00
|
|
|
</LinearLayout>
|
2014-01-12 21:33:37 +01:00
|
|
|
|
2014-03-15 13:22:02 +01:00
|
|
|
</LinearLayout>
|