RadioButton是一種用于在Android應用程序中提供單選選項的視圖組件。它通常與RadioGroup組件一起使用,以便只能選擇一個RadioButton。
以下是RadioButton的使用詳解:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radioButton1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 1" />
<RadioButton
android:id="@+id/radioButton2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 2" />
<RadioButton
android:id="@+id/radioButton3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Option 3" />
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup radioGroup, int checkedId) {
// 處理選項更改事件
switch (checkedId) {
case R.id.radioButton1:
// 當選擇Option 1時的邏輯
break;
case R.id.radioButton2:
// 當選擇Option 2時的邏輯
break;
case R.id.radioButton3:
// 當選擇Option 3時的邏輯
break;
}
}
});
RadioButton radioButton1 = findViewById(R.id.radioButton1);
radioButton1.setChecked(true);
以上是RadioButton的基本使用詳解。通過RadioGroup和RadioButton的組合,可以實現在Android應用程序中提供單選選項的功能。