2018-10-19 15:26:38 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2018-10-28 21:18:14 +03:00
|
|
|
|
|
|
|
<im.vector.riotredesign.core.platform.CheckableConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2018-10-19 15:26:38 +03:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2018-10-29 19:20:08 +03:00
|
|
|
android:id="@+id/itemRoomLayout"
|
2018-10-19 15:26:38 +03:00
|
|
|
android:layout_width="match_parent"
|
2018-10-28 21:18:14 +03:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="@drawable/bg_room_item"
|
2018-10-29 19:20:08 +03:00
|
|
|
android:minHeight="48dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/toolbarAvatarImageView"
|
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
tools:src="@tools:sample/avatars" />
|
2018-10-28 21:18:14 +03:00
|
|
|
|
|
|
|
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/titleView"
|
2018-10-29 19:20:08 +03:00
|
|
|
android:layout_width="0dp"
|
2018-10-28 21:18:14 +03:00
|
|
|
android:layout_height="wrap_content"
|
2018-10-29 19:20:08 +03:00
|
|
|
android:layout_marginStart="16dp"
|
2018-10-28 21:18:14 +03:00
|
|
|
android:textSize="14sp"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
2018-10-29 19:20:08 +03:00
|
|
|
app:layout_constraintStart_toEndOf="@id/toolbarAvatarImageView"
|
2018-10-28 21:18:14 +03:00
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
2018-10-29 19:20:08 +03:00
|
|
|
tools:text="@tools:sample/full_names" />
|
2018-10-28 21:18:14 +03:00
|
|
|
|
|
|
|
</im.vector.riotredesign.core.platform.CheckableConstraintLayout>
|