| |
---|
| | app:layout_constraintEnd_toEndOf="parent" |
---|
| | app:layout_constraintStart_toStartOf="parent" |
---|
| | app:layout_constraintTop_toBottomOf="@+id/temple_spinner_layout" /> |
---|
| | |
---|
| | <TextView |
---|
| | android:id="@+id/regist_extra_text" |
---|
| | android:layout_width="wrap_content" |
---|
| | android:layout_height="wrap_content" |
---|
| | android:layout_marginLeft="8dp" |
---|
| | android:layout_marginTop="4dp" |
---|
| | android:text="@string/extra" |
---|
| | android:textColor="#ffffff" |
---|
| | android:textSize="18dp" |
---|
| | app:layout_constraintStart_toStartOf="parent" |
---|
| | app:layout_constraintTop_toBottomOf="@id/regist_list" /> |
---|
| | |
---|
| | <CheckBox |
---|
| | android:id="@+id/regist_extra_check_box" |
---|
| | android:layout_width="wrap_content" |
---|
| | android:layout_height="wrap_content" |
---|
| | android:checked="@={registViewModel.checkExtra}" |
---|
| | android:theme="@style/OverlayCheckBox" |
---|
| | app:layout_constraintBottom_toBottomOf="@id/regist_extra_text" |
---|
| | app:layout_constraintStart_toEndOf="@id/regist_extra_text" |
---|
| | app:layout_constraintTop_toTopOf="@id/regist_extra_text" /> |
---|
| | |
---|
| | <TextView |
---|
| | android:id="@+id/regist_wakurin_text" |
---|
| | android:layout_width="wrap_content" |
---|
| | android:layout_height="wrap_content" |
---|
| | android:layout_marginStart="8dp" |
---|
| | android:text="@string/wakurin" |
---|
| | android:textColor="#ffffff" |
---|
| | android:textSize="18dp" |
---|
| | app:layout_constraintBottom_toBottomOf="@id/regist_extra_text" |
---|
| | app:layout_constraintStart_toEndOf="@id/regist_extra_check_box" |
---|
| | app:layout_constraintTop_toTopOf="@id/regist_extra_text" /> |
---|
| | |
---|
| | <Spinner |
---|
| | android:layout_width="wrap_content" |
---|
| | android:layout_height="32dp" |
---|
| | android:layout_marginStart="4dp" |
---|
| | android:background="#ffffff" |
---|
| | android:entries="@array/wakurin_count" |
---|
| | android:selectedItemPosition="@={registViewModel.wakurinRank}" |
---|
| | app:layout_constraintBottom_toBottomOf="@id/regist_extra_text" |
---|
| | app:layout_constraintStart_toEndOf="@id/regist_wakurin_text" |
---|
| | app:layout_constraintTop_toTopOf="@id/regist_extra_text" /> |
---|
| | |
---|
| | <Button |
---|
| | android:id="@+id/regist_add_list" |
---|
| | android:layout_width="@dimen/regist_button_width" |
---|
| | android:layout_height="@dimen/regist_button_height" |
---|
| |
---|
| | android:onClick="@{registViewModel.onClickAdd}" |
---|
| | android:text="追加" |
---|
| | android:textColor="#ffffff" |
---|
| | app:layout_constraintStart_toEndOf="@+id/regist_remove_list" |
---|
| | app:layout_constraintTop_toBottomOf="@+id/regist_list" /> |
---|
| | app:layout_constraintTop_toTopOf="@id/regist_remove_list" /> |
---|
| | |
---|
| | <Button |
---|
| | android:id="@+id/regist_remove_list" |
---|
| | android:layout_width="@dimen/regist_button_width" |
---|
| | android:layout_height="@dimen/regist_button_height" |
---|
| | android:layout_marginStart="8dp" |
---|
| | android:layout_marginTop="12dp" |
---|
| | android:background="@drawable/shape_service_button" |
---|
| | android:onClick="@{registViewModel.onClickRemove}" |
---|
| | android:text="削除" |
---|
| | android:textColor="#ffffff" |
---|
| | app:layout_constraintStart_toStartOf="parent" |
---|
| | app:layout_constraintTop_toTopOf="@+id/regist_add_list" /> |
---|
| | app:layout_constraintTop_toBottomOf="@id/regist_extra_text" /> |
---|
| | |
---|
| | <FrameLayout |
---|
| | android:id="@+id/temple_spinner_layout" |
---|
| | android:layout_width="0dp" |
---|
| |
---|
| | |