<?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="match_parent"
    android:orientation="vertical"
    android:background="@color/white"
    xmlns:app="http://schemas.android.com/apk/res-auto">

    <androidx.cardview.widget.CardView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="8dp"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        app:cardElevation="6dp"
        android:layout_marginBottom="5dp"
        app:cardCornerRadius="5dp">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:orientation="vertical">

            <TextView
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:text="Title"
                android:gravity="left|center"
                android:padding="10dp"
                android:id="@+id/title"
                android:textColor="@color/black"
                android:fontFamily="serif"
                android:maxLines="1"
                android:textSize="15dp"
                android:textStyle="bold"/>

            <TextView
                android:layout_width="match_parent"
                android:layout_height="1dp"
                android:textColor="@color/black"
                android:fontFamily="serif"
                android:background="#8E8E8E"
                android:layout_marginLeft="10dp"
                android:layout_marginRight="10dp"
                android:maxLines="1"
                android:textSize="15dp"
                android:textStyle="bold"/>

            <TextView
                android:fontFamily="serif"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Body"
                android:gravity="left|center"
                android:padding="10dp"
                android:textColor="@color/black"
                android:id="@+id/body"
                android:textSize="15dp"
                android:textStyle="bold"/>

        </LinearLayout>


    </androidx.cardview.widget.CardView>



</LinearLayout>