cpen321-recipe-roulette / android / app / src / main / res / layout / chat_room_entry.xml
chat_room_entry.xml
Raw
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:tools="http://schemas.android.com/tools">

    <ImageView
        android:layout_width="64dp"
        android:layout_height="64dp"
        android:layout_marginRight="5dp"
        android:layout_marginBottom="20dp"
        android:layout_centerVertical="true"
        android:id="@+id/img"/>


    <TextView
        android:id="@+id/item"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_toEndOf="@id/img"
        android:textSize="20dp"
        tools:text="Name" />

    <TextView
        android:id="@+id/expiry"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@id/item"
        android:layout_marginStart="8dp"
        android:layout_marginTop="1dp"
        android:layout_toEndOf="@id/img"
        tools:text="email@email.com" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="2dp"
        android:layout_below="@id/img"
        android:layout_marginTop="10dp"
        android:layout_marginBottom="10dp"
        android:background="#673AB7"/>

</RelativeLayout>