私の理解では、チェックボックスが「クリック」されているかどうかを判断し、チェックされているかどうかを確認するには、次のようなコードを使用できます。
cb=(CheckBox)findViewById(R.id.chkBox1);
cb.setOnCheckedChangeListener(this);
public void onCheckedChanged(CompoundButton buttonView,
boolean isChecked) {
if (isChecked) {
cb.setText("This checkbox is: checked");
}
else {
cb.setText("This checkbox is: unchecked");
}
}
ただし、ラジオグループに対して上記を行う方法についてのロジックを理解することはできません。
私の RadioGroup の xml は次のとおりです。
<RadioGroup android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio1" android:checked="true"
android:text="RadioButton1">
</RadioButton>
<RadioButton android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio2" android:text="RadioButton2" android:checked="true">
</RadioButton>
<RadioButton android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radio3" android:text="RadioButton3">
</RadioButton>
</RadioGroup>
質問: 別のリスナーをセットアップする必要がありますか? それとも、既にそこにあるリスナーもこのグループを「登録」しますか?
また、リスナーは RadioGroup または RadioButton に設定する必要がありますか?