48 lines
1.9 KiB
XML
48 lines
1.9 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<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"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:background="?selectableItemBackground"
|
||
|
android:padding="@dimen/list_padding">
|
||
|
|
||
|
<com.makeramen.roundedimageview.RoundedImageView
|
||
|
android:id="@+id/avatar"
|
||
|
android:layout_width="48dp"
|
||
|
android:layout_height="48dp"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:scaleType="centerCrop"
|
||
|
app:riv_corner_radius="2dp"/>
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_toRightOf="@+id/avatar"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_marginLeft="@dimen/avatar_item_distance">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:singleLine="true"
|
||
|
android:textAppearance="@style/TextAppearance.Conversations.Subhead"/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/description"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:maxLines="2"
|
||
|
android:textAppearance="@style/TextAppearance.Conversations.Body1"/>
|
||
|
<TextView
|
||
|
android:id="@+id/room"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:maxLines="2"
|
||
|
android:textAppearance="@style/TextAppearance.Conversations.Body1.Secondary"/>
|
||
|
</LinearLayout>
|
||
|
|
||
|
</RelativeLayout>
|
||
|
</layout>
|