ラジオグループの下に2つのラジオボタンを追加し、最初のラジオボタンを選択したときに最初のラジオボタンを有効にしました。なぜラジオグループ複数のラジオボタンを選択する
<RadioGroup
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:orientation="horizontal">
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="NO"/>
<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="YES"/>
</RadioGroup>
良いことがあります。 –