SLAM/mobile/src/main/res/layout/item_chatmessage.xml

44 lines
1.4 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/chatmessage_sender"
android:text="Bob"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/chatmessage_role"
android:text="Admin"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"/>
</RelativeLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="56dp"
android:layout_height="56dp" />
<TextView
android:id="@+id/chatmessage_content"
android:text="Hallo Welt, Dies ist eine tolle Chatmessage"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
<TextView
android:id="@+id/chatmessage_date"
android:text="12:30"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>