<?xml version="1.0" encoding="utf-8"?> <android.support.constraint.ConstraintLayout 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" tools:context=".views.AddMemberActivity"> <LinearLayout android:id="@+id/linearLayout" android:layout_width="match_parent" android:layout_height="61dp" android:background="#a0d8ef" android:orientation="horizontal"> <Button android:id="@+id/backButton" android:layout_width="10dp" android:layout_height="61dp" android:layout_weight="1" android:background="#a0d8ef" android:text="↩" android:textSize="36sp" /> <TextView android:id="@+id/viewName" android:layout_width="wrap_content" android:layout_height="match_parent" android:layout_weight="1" android:gravity="center" android:text="メンバー追加" /> <TextView android:id="@+id/textView8" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_weight="1" /> </LinearLayout> <LinearLayout android:id="@+id/linearLayout2" android:layout_width="412dp" android:layout_height="683dp" android:orientation="vertical" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/linearLayout"> <TextView android:id="@+id/groupName" android:layout_width="match_parent" android:layout_height="75dp" android:background="#e6eae3" android:gravity="center" android:text="家族用 グループ" android:textSize="24sp" /> <Button android:id="@+id/addQR" android:layout_width="match_parent" android:layout_height="144dp" android:background="@drawable/white" android:gravity="center" android:text="QRコードで追加" android:textSize="24sp" /> <Button android:id="@+id/addID" android:layout_width="match_parent" android:layout_height="144dp" android:background="@drawable/white" android:gravity="center" android:text="IDで追加" android:textSize="24sp" /> <Button android:id="@+id/addMail" android:layout_width="match_parent" android:layout_height="144dp" android:background="@drawable/white" android:gravity="center" android:text="メールで招待" android:textSize="24sp" /> </LinearLayout> </android.support.constraint.ConstraintLayout>