<?xml version="1.0" encoding="utf-8"?>
<LinearLayout android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    xmlns:android="http://schemas.android.com/apk/res/android">
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="?android:attr/selectableItemBackground"
        android:padding="10sp">
        <ImageView
            android:layout_marginRight="10sp"
            android:id="@+id/profile"
            android:layout_width="40sp"
            android:layout_height="40sp"
            android:background="@drawable/ic_account_circle_black_24dp"
            android:clickable="true"
            android:focusable="true"
            android:layout_marginEnd="10sp" />
        <TextView
            android:textStyle="bold"
            android:textColor="@android:color/black"
            android:id="@+id/name"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="14sp"
            />
        <View
            android:layout_width="0dp"
            android:layout_height="0dp"
            android:layout_weight="1" />
        <CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/receive"/>
    </LinearLayout>
</LinearLayout>