Mercury-IM/app/src/main/res/layout/view_message_text_out.xml
2019-06-10 02:52:08 +02:00

31 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
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"
android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.cardview.widget.CardView
xmlns:card_view="http://schemas.android.com/apk/res-auto"
android:id="@+id/msg_bubble"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:minHeight="48dp"
app:layout_constraintEnd_toEndOf="parent"
card_view:cardCornerRadius="12dp"
card_view:layout_constraintTop_toTopOf="parent">
<TextView
android:id="@+id/msg_body"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:maxWidth="300dp"
android:layout_margin="8dp"
tools:text="Hello World!Hello World!Hello World!Hello World!" />
</androidx.cardview.widget.CardView>
</androidx.constraintlayout.widget.ConstraintLayout>