要使用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的行為和外觀。