Newer
Older
NemophilaClient / app / src / main / res / layout / layout_friends_activity.xml
<?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"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <ImageView
        android:id="@+id/friendIcon"
        android:layout_width="111dp"
        android:layout_height="56dp"
        android:layout_weight="1"
        tools:srcCompat="@tools:sample/avatars" />

    <TextView
        android:id="@+id/friendName"
        android:layout_width="259dp"
        android:layout_height="41dp"
        android:layout_weight="1"
        android:text="TextView" />

    <Button
        android:id="@+id/friendDelete"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="削除" />
</LinearLayout>