XMLレイアウト(ラジオボタン RadioGroupとRadioButton)

レイアウトxml
ラジオボタン RadioGroupとRadioButtonの例

<?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=".MainActivity">

	<RadioGroup
	    android:id="@+id/tip_options"
	    android:layout_width="wrap_content"
	    android:layout_height="wrap_content"
        app:layout_constraintTop_toTopOf="parent"
	    app:layout_constraintStart_toStartOf="parent"
	    android:checkedButton="@id/option_twenty_percent" <!-- デフォルトの選択 -->
	    android:orientation="vertical"	<!-- ラジオボタンを並べる方向 -->
	    >

	   <RadioButton
	       android:id="@+id/option_twenty_percent"
	       android:layout_width="wrap_content"
	       android:layout_height="wrap_content"
	       android:text="Amazing (20%)" />

	   <RadioButton
	       android:id="@+id/option_eighteen_percent"
	       android:layout_width="wrap_content"
	       android:layout_height="wrap_content"
	       android:text="Good (18%)" />

	   <RadioButton
	       android:id="@+id/option_fifteen_percent"
	       android:layout_width="wrap_content"
	       android:layout_height="wrap_content"
	       android:text="OK (15%)" />

	</RadioGroup>
</androidx.constraintlayout.widget.ConstraintLayout>

トレーニング > KOTLIN を用いた ANDROID の基本 > レイアウト > ユーザー入力1 > Android 用の XML レイアウトを作成する > 5.チップオプションを追加する