要使用Android RadioButton控件,您需要遵循以下步骤:
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton 1" />
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton 2" />
RadioButton radioButton1 = findViewById(R.id.radioButton1);
RadioButton radioButton2 = findViewById(R.id.radioButton2);
radioButton1.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) {
if (isChecked) {
// 当用户选中radioButton1时执行的操作
} else {
// 当用户取消选中radioButton1时执行的操作
}
}
});
if (radioButton1.isChecked()) {
// radioButton1被选中
} else {
// radioButton1未被选中
}
这些步骤将帮助您开始使用Android RadioButton控件。您可以根据需要设置更多的属性和监听器来自定义RadioButton的行为和外观。