<?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_marginBottom="5dp"
xmlns:tools="http://schemas.android.com/tools">
<ImageView
android:id="@+id/requestingIcon"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.2"
tools:srcCompat="@tools:sample/avatars" />
<TextView
android:id="@+id/requestingName"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="0.55"
android:text="ネモフィラ 太郎" />
<Button
android:id="@+id/requestingDeleteButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="0.25"
android:backgroundTint="#FF8372"
android:text="申請削除" />
</LinearLayout>