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-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"
|
|
|
|
android:layout_height="wrap_content"
|
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-01-12 15:33:37 -05:00
|
|
|
<TextView
|
2014-03-15 08:22:02 -04:00
|
|
|
android:id="@+id/rank"
|
2014-01-12 15:33:37 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-15 08:22:02 -04:00
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:text="0"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
2014-04-05 20:27:21 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:width="30sp" />
|
2014-03-15 08:22:02 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
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
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/userId"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/user_id_no_name"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/address"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/label_email"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:paddingLeft="10dp" />
|
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 14:58:17 -04:00
|
|
|
<ImageView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:id="@+id/certified"
|
|
|
|
android:src="@android:drawable/presence_invisible"
|
|
|
|
android:layout_marginLeft="5dp"
|
|
|
|
android:layout_marginRight="5dp" />
|
|
|
|
|
2014-03-15 08:22:02 -04:00
|
|
|
</LinearLayout>
|