2014-01-12 15:33:37 -05: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 15:17:30 -05:00
|
|
|
android:layout_height="wrap_content"
|
2014-05-04 18:58:22 -04:00
|
|
|
android:minHeight="?android:attr/listPreferredItemHeight"
|
2014-03-15 08:22:02 -04:00
|
|
|
android:orientation="horizontal"
|
2014-02-09 15:17:30 -05:00
|
|
|
android:paddingRight="3dip"
|
|
|
|
android:singleLine="true">
|
2014-01-12 15:33:37 -05:00
|
|
|
|
2014-03-15 08:22:02 -04:00
|
|
|
<CheckBox
|
|
|
|
android:layout_width="wrap_content"
|
2014-04-11 10:09:51 -04:00
|
|
|
android:layout_height="match_parent"
|
2014-04-05 20:27:21 -04:00
|
|
|
android:id="@+id/checkBox"
|
|
|
|
android:clickable="false"
|
|
|
|
android:focusable="false" />
|
2014-03-15 08:22:02 -04:00
|
|
|
|
2014-05-04 18:58:22 -04:00
|
|
|
<LinearLayout
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-04 18:58:22 -04:00
|
|
|
android:layout_marginLeft="8dp"
|
2014-04-05 20:27:21 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-05-04 18:58:22 -04:00
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:id="@+id/certified"
|
|
|
|
android:src="@drawable/key_certify_ok_self" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
2014-03-15 08:22:02 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
2014-05-04 18:58:22 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-04-11 10:09:51 -04:00
|
|
|
android:layout_width="0dip"
|
2014-05-04 18:58:22 -04:00
|
|
|
android:layout_marginLeft="8dp"
|
2014-03-15 14:58:17 -04:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1">
|
2014-03-15 08:22:02 -04:00
|
|
|
|
2014-05-04 18:58:22 -04: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 08:22:02 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/userId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-11 10:09:51 -04:00
|
|
|
android:text="Alice"
|
2014-03-15 08:22:02 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
2014-05-04 18:58:22 -04:00
|
|
|
android:id="@+id/comment"
|
2014-03-15 08:22:02 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-05-04 18:58:22 -04:00
|
|
|
android:textColor="@color/tertiary_text_light"
|
|
|
|
android:text="comment"
|
2014-04-09 13:42:27 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
2014-03-15 14:58:17 -04:00
|
|
|
|
2014-03-15 08:22:02 -04:00
|
|
|
</LinearLayout>
|
2014-01-12 15:33:37 -05:00
|
|
|
|
2014-03-15 08:22:02 -04:00
|
|
|
</LinearLayout>
|