2014-01-23 20:04:05 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-01-28 16:21:08 -05:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-23 20:04:05 -05:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-28 16:21:08 -05:00
|
|
|
android:padding="8dp"
|
2014-03-14 23:59:18 -04:00
|
|
|
android:paddingBottom="8dp"
|
|
|
|
android:background="?android:attr/activatedBackgroundIndicator">
|
2014-01-23 20:04:05 -05:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/contact_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
2014-08-09 08:25:55 -04:00
|
|
|
android:scaleType="centerCrop"
|
2014-01-23 20:04:05 -05:00
|
|
|
android:src="@drawable/ic_profile">
|
|
|
|
</ImageView>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_toRightOf="@+id/contact_photo"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="8dp">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_display_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="18sp"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:textColor="@color/primarytext"
|
2014-03-13 17:14:05 -04:00
|
|
|
android:singleLine="true"
|
2014-01-23 20:04:05 -05:00
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-13 17:14:05 -04:00
|
|
|
android:singleLine="true"
|
2014-07-04 10:13:52 -04:00
|
|
|
android:textSize="14sp"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:textColor="@color/primarytext"
|
2014-01-23 20:04:05 -05:00
|
|
|
/>
|
2014-06-01 04:22:42 -04:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/key"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="18sp"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:textColor="@color/primarytext"
|
2014-06-01 04:22:42 -04:00
|
|
|
android:typeface="monospace"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
2014-01-23 20:04:05 -05:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-28 16:21:08 -05:00
|
|
|
</RelativeLayout>
|