2014-10-04 23:16:51 +02: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="vertical"
|
|
|
|
|
android:singleLine="true">
|
|
|
|
|
|
2014-10-05 02:15:43 +02:00
|
|
|
<LinearLayout android:id="@+id/user_id_header"
|
2014-10-04 23:16:51 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2014-10-05 02:15:43 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:layout_marginLeft="8dip"
|
|
|
|
|
android:layout_marginTop="16dip">
|
2014-10-04 23:16:51 +02:00
|
|
|
|
2014-10-05 02:15:43 +02:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/user_id_header_id"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="ID: 0123 4567 890a bcde"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dip"
|
|
|
|
|
android:background="?android:attr/listDivider"
|
|
|
|
|
android:paddingLeft="24dip"
|
|
|
|
|
android:paddingRight="24dip"
|
|
|
|
|
android:layout_marginBottom="4dip"/>
|
2014-10-04 23:16:51 +02:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
2014-10-05 02:15:43 +02:00
|
|
|
<LinearLayout android:id="@+id/user_id_body"
|
2014-10-04 23:16:51 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:singleLine="true"
|
2014-10-05 02:15:43 +02:00
|
|
|
android:layout_marginLeft="8dip"
|
|
|
|
|
android:layout_marginTop="4dip">
|
2014-10-04 23:16:51 +02:00
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
|
android:id="@+id/user_id_item_check_box"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:clickable="false"
|
|
|
|
|
android:focusable="false" />
|
|
|
|
|
|
|
|
|
|
<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"
|
2014-10-05 02:15:43 +02:00
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:minHeight="48dip">
|
2014-10-04 23:16:51 +02:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/user_id_item_name"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="alice@example.com"
|
2014-10-05 02:15:43 +02:00
|
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:gravity="center_vertical"/>
|
2014-10-04 23:16:51 +02:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/user_id_item_addresses"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="alice@example.com\na-lyc@example.com"
|
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
|
android:layout_marginLeft="20dip"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|