39 lines
1.3 KiB
XML
39 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/messageContainer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingStart="4dp"
|
|
android:paddingEnd="4dp">
|
|
|
|
<LinearLayout
|
|
android:id="@+id/messageBubble"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="start"
|
|
android:layout_marginTop="2dp"
|
|
android:layout_marginBottom="2dp"
|
|
android:orientation="vertical"
|
|
android:paddingStart="12dp"
|
|
android:paddingTop="8dp"
|
|
android:paddingEnd="12dp"
|
|
android:paddingBottom="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/messageBodyText"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxWidth="260dp"
|
|
android:textColor="@color/primary_text"
|
|
android:textSize="16sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/messageMetaText"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="4dp"
|
|
android:textColor="@color/message_meta"
|
|
android:textSize="11sp" />
|
|
</LinearLayout>
|
|
</FrameLayout>
|