63 lines
2.5 KiB
XML
63 lines
2.5 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"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<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" />
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/avatar_item_distance"
|
|
android:layout_toRightOf="@+id/avatar">
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.Conversations.Subhead"
|
|
tools:text="Proosdy IM Chat trantu" />
|
|
|
|
<TextView
|
|
android:id="@+id/language"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignBaseline="@id/name"
|
|
android:layout_marginLeft="8sp"
|
|
android:layout_toRightOf="@id/name"
|
|
android:singleLine="true"
|
|
android:textAppearance="@style/TextAppearance.Conversations.Caption"
|
|
tools:text="EN" />
|
|
|
|
<TextView
|
|
android:id="@+id/description"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_below="@id/name"
|
|
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:layout_below="@id/description"
|
|
android:maxLines="2"
|
|
android:textAppearance="@style/TextAppearance.Conversations.Body1.Secondary" />
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
</layout> |