24 lines
791 B
XML
24 lines
791 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:padding="8dp"
|
||
|
|
android:background="?android:attr/selectableItemBackground">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_time"
|
||
|
|
android:layout_width="80dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="#666666"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/tv_message"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginStart="8dp"
|
||
|
|
android:textColor="#333333"
|
||
|
|
android:textSize="14sp" />
|
||
|
|
|
||
|
|
</LinearLayout>
|