Family-Map-Project / FamilyMap / app / src / main / res / layout / event_item.xml
event_item.xml
Raw
<?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:layout_margin="10dp">

    <TextView
        android:layout_gravity="center"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:drawableLeft="@drawable/marker_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content">
    </TextView>

    <GridLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:rowCount="2"
        android:columnCount="1"
        android:layout_margin="10dp">

        <TextView
            android:id="@+id/event_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:text=""
            android:textStyle="bold"/>

        <TextView
            android:id="@+id/event_associated_name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""/>
    </GridLayout>
</LinearLayout>