<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<ImageView
android:id="@+id/usericon"
android:layout_width="59dp"
android:layout_height="59dp"
android:layout_weight="1"
app:srcCompat="@drawable/friend" />
<TextView
android:id="@+id/content"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TextView
android:id="@+id/userId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<Button
android:id="@+id/AllowButton"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:backgroundTint="#FFD900"
android:text="許可"
android:textColor="#121111" />
<Button
android:id="@+id/RejectButton"
android:layout_width="30dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="拒否"
android:textColor="#121111"
android:textColorLink="#615D5D"
android:layout_marginEnd="10dp" />
</LinearLayout>