87 lines
3.0 KiB
XML
87 lines
3.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/messageRoot"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="start"
|
|
android:orientation="vertical">
|
|
|
|
<com.meloda.fast.widget.BoundedLinearLayout
|
|
android:id="@+id/messageBubble"
|
|
android:layout_width="0dp"
|
|
android:layout_height="0dp"
|
|
android:orientation="vertical"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="4dp">
|
|
|
|
<com.meloda.fast.widget.CircleImageView
|
|
android:id="@+id/messageAvatar"
|
|
android:layout_width="35dp"
|
|
android:layout_height="35dp"
|
|
android:layout_marginStart="14dp"
|
|
android:layout_marginTop="4dp"
|
|
android:layout_marginEnd="14dp"
|
|
tools:src="?colorAccent" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/channelTitle"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:singleLine="true"
|
|
android:textColor="?colorAccent"
|
|
android:textSize="18sp"
|
|
android:textStyle="bold"
|
|
tools:text="Some title" />
|
|
|
|
<TextView
|
|
android:id="@+id/messageText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:autoLink="all"
|
|
android:gravity="start|center"
|
|
android:linksClickable="true"
|
|
android:textColor="?android:textColorPrimary"
|
|
android:textColorLink="?colorAccent"
|
|
tools:text="Some text" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/messageDate"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="14dp"
|
|
android:layout_marginEnd="14dp"
|
|
android:textColor="?android:textColorSecondary"
|
|
android:textSize="12sp"
|
|
tools:ignore="SmallSp"
|
|
tools:text="10:15"
|
|
tools:visibility="visible" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
</LinearLayout> |