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-09-08 23:58:37 +02:00
|
|
|
android:layout_width="match_parent"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:layout_height="wrap_content"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:background="?android:attr/activatedBackgroundIndicator"
|
|
|
|
android:padding="8dp" >
|
2014-01-24 02:04:05 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/contact_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
2014-08-09 14:25:55 +02:00
|
|
|
android:scaleType="centerCrop"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:src="@drawable/ic_profile" >
|
2014-01-24 02:04:05 +01:00
|
|
|
</ImageView>
|
2014-09-08 23:58:37 +02:00
|
|
|
|
2014-01-24 02:04:05 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:layout_toRightOf="@+id/contact_photo"
|
2014-01-24 02:04:05 +01:00
|
|
|
android:orientation="vertical"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:paddingLeft="8dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_display_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
2014-09-11 16:22:33 +02:00
|
|
|
android:textColor="@color/primarytext"
|
|
|
|
android:textSize="?attr/TextSizeHeadline" />
|
2014-09-08 23:58:37 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textColor="@color/primarytext"
|
|
|
|
android:textSize="?attr/TextSizeBody" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textColor="@color/primarytext"
|
|
|
|
android:textSize="?attr/TextSizeHeadline"
|
|
|
|
android:typeface="monospace"
|
|
|
|
android:visibility="gone" />
|
2014-01-24 02:04:05 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-28 22:21:08 +01:00
|
|
|
</RelativeLayout>
|