在 Android 中,可以通过将多个 RadioButton 放在同一个 RadioGroup 中来实现分组切换的效果。在同一个 RadioGroup 中的所有 RadioButton 会被视为同一个分组,只能选择其中的一个。
以下是实现分组切换的步骤:
<RadioGroup
android:id="@+id/radioGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radioButton1"
android:text="Option 1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RadioButton
android:id="@+id/radioButton2"
android:text="Option 2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
<RadioButton
android:id="@+id/radioButton3"
android:text="Option 3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"/>
</RadioGroup>
RadioGroup radioGroup = findViewById(R.id.radioGroup);
radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
@Override
public void onCheckedChanged(RadioGroup group, int checkedId) {
RadioButton radioButton = findViewById(checkedId);
// 处理选择的 RadioButton
}
});
通过以上步骤,就可以实现 RadioButton 的分组切换效果。当用户选择一个 RadioButton 时,其他 RadioButton 的选择状态会自动取消。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。