您好,登錄后才能下訂單哦!
在 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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。