2014-01-24 02:04:05 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2014-01-28 22:21:08 +01:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2014-01-28 22:21:08 +01:00
|
|
|
android:padding="8dp"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:paddingBottom="8dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/contact_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
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"
|
|
|
|
android:textColor="#5b5b5b"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="#5b5b5b"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-28 22:21:08 +01:00
|
|
|
</RelativeLayout>
|