51 lines
1.5 KiB
XML
51 lines
1.5 KiB
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_margin="2dp"
|
||
|
|
android:background="@color/white"
|
||
|
|
android:layout_height="wrap_content">
|
||
|
|
|
||
|
|
<LinearLayout
|
||
|
|
android:layout_marginVertical="5dp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:background="@drawable/grey_bordernew"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:weightSum="1"
|
||
|
|
android:layout_marginHorizontal="15dp"
|
||
|
|
android:paddingVertical="5dp">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="0.04"
|
||
|
|
android:text="•"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/popins_extrabold"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:gravity="center"/>
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/message"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="0.95"
|
||
|
|
android:text=""
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:fontFamily="@font/popins_extrabold"
|
||
|
|
android:padding="10dp"
|
||
|
|
android:textColor="@color/black"
|
||
|
|
android:gravity="center"/>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|
||
|
|
|