2014-10-22 16:38:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-02-19 09:46:13 +00:00
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="match_parent"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:layout_height="wrap_content"
|
2018-06-23 19:35:37 +00:00
|
|
|
android:background="?attr/list_item_background"
|
2018-02-19 09:46:13 +00:00
|
|
|
android:padding="@dimen/list_padding">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-02-19 09:46:13 +00:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
|
|
android:id="@+id/contact_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:riv_corner_radius="2dp"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2018-02-19 09:46:13 +00:00
|
|
|
<LinearLayout
|
2014-10-22 16:38:44 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-19 09:46:13 +00:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@+id/contact_photo"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="@dimen/avatar_item_distance">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_display_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
2018-03-31 10:16:56 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Subhead"/>
|
2018-02-19 09:46:13 +00:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/contact_jid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1.Secondary"/>
|
|
|
|
|
|
|
|
<com.wefika.flowlayout.FlowLayout
|
|
|
|
android:id="@+id/tags"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="-2dp"
|
|
|
|
android:orientation="horizontal">
|
|
|
|
</com.wefika.flowlayout.FlowLayout>
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/key"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2018-02-28 21:18:33 +00:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Fingerprint"
|
2018-02-19 09:46:13 +00:00
|
|
|
android:visibility="gone"/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
</layout>
|