forked from melod1n/fast-messenger
50 lines
1.9 KiB
XML
50 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"
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="6dp">
|
|
|
|
<com.meloda.fast.widget.CircleImageView
|
|
android:id="@+id/preview"
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
android:layout_marginEnd="8dp"
|
|
tools:src="@tools:sample/avatars" />
|
|
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?textColorPrimary"
|
|
android:textSize="18sp"
|
|
app:fontFamily="@font/google_sans_regular"
|
|
tools:text="melod1n" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/caption"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:alpha="0.8"
|
|
android:ellipsize="end"
|
|
android:maxLines="1"
|
|
android:textColor="?textColorPrimary"
|
|
app:fontFamily="@font/roboto_regular"
|
|
tools:text="vk.com/melod1n" />
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
|
|
|
</layout> |