<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".CreateRoomActivity">
<Button
android:id="@+id/CreateRoomButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="76dp"
android:text="ルームを作成する"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/nicknameTextView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="116dp"
android:text="ルームに入る前に、あなたのニックネームを設定してください"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<EditText
android:id="@+id/nicknameEditText"
android:layout_width="279dp"
android:layout_height="54dp"
android:layout_marginBottom="60dp"
android:ems="10"
android:hint="ニックネームを入力してください"
android:inputType="textPersonName"
android:maxLength="15"
android:maxLines="1"
app:layout_constraintBottom_toTopOf="@+id/CreateRoomButton"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/nicknameTextView"
app:layout_constraintVertical_bias="1.0" />
<ImageButton
android:id="@+id/backButton"
android:layout_width="45dp"
android:layout_height="44dp"
android:padding="0dp"
android:scaleType="fitCenter"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.037"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.043"
app:srcCompat="@drawable/backbottom" />
</androidx.constraintlayout.widget.ConstraintLayout>