39 lines
3 KiB
XML
39 lines
3 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="wrap_content"
|
|
android:background="?android:attr/selectableItemBackground"
|
|
android:orientation="horizontal" android:clickable="true"
|
|
android:focusable="true" android:paddingBottom="10dp"
|
|
android:paddingTop="10dp" android:paddingStart="16dp"
|
|
android:paddingEnd="10dp">
|
|
<TextView
|
|
android:text="Sun, October 31, 2021, 10:43:12"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/detail_item_date_text"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Small" app:layout_constraintTop_toTopOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"/>
|
|
<TextView
|
|
android:layout_width="10dp"
|
|
android:layout_height="10dp" android:id="@+id/detail_item_new"
|
|
android:layout_gravity="center"
|
|
android:background="@drawable/ic_circle"
|
|
android:gravity="center"
|
|
app:layout_constraintTop_toTopOf="@+id/detail_item_date_text"
|
|
app:layout_constraintBottom_toBottomOf="@+id/detail_item_date_text"
|
|
android:layout_marginTop="1dp" app:layout_constraintStart_toEndOf="@+id/detail_item_date_text"
|
|
android:layout_marginStart="5dp"/>
|
|
<TextView
|
|
android:text="This is a very very very long message. It could be as long as 1024 charaters, which is a lot more than you'd think. No, really so far this message is barely 180 characters long. I can't believe how long 1024 bytes are. This is outrageous. Oh you know what, I think I won't type the whole thing. This seems a little too long for a sample text. Well, anyway, it was nice chatting. So far this message is about 400 bytes long. So maybe just double what you see and that's that."
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:id="@+id/detail_item_message_text"
|
|
android:textColor="@color/primaryTextColor"
|
|
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
|
|
app:layout_constraintTop_toBottomOf="@+id/detail_item_date_text"
|
|
app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|