在單選按鈕上使用組
ToggleGroup
用於管理 RadioButton
s,以便每次只能選擇每組中的一個。
建立一個簡單的 ToggleGroup
如下:
ToggleGroup group = new ToggleGroup();
建立 Togglegroup
後,可以使用 setToggleGroup(ToggleGroup)
將其分配給 RadioButton
s。使用 setSelected(Boolean)
預先選擇其中一個 RadioButton
s。
RadioButton radioButton1 = new RadioButton("stackoverlow is awesome! :)");
radioButton1.setToggleGroup(group);
radioButton1.setSelected(true);
RadioButton radioButton2 = new RadioButton("stackoverflow is ok :|");
radioButton2.setToggleGroup(group);
RadioButton radioButton3 = new RadioButton("stackoverflow is useless :(");
radioButton3.setToggleGroup(group);