有人如何检索放入切换组的元素?或者也许还有另一种组织控件的方法,以便可以切换它们,客户也可以从组内获得实际控制权?
我有什么
RadioButton radio1 = new RadioButton();
RadioButton radio12= new RadioButton();
ToggleGroup toggleGroup = new ToggleGroup();
radio1.setToggleGroup(toggleGroup);
radio2.setToggleGroup(toggleGroup);
我想要什么
RadioButton temp = toggleGroup.getSelectedObject();
或者
RadioButton temp = toggleGroup.getSelectedToggle().getObject();
答案 0 :(得分:1)
如果要检索组中的所有切换:
toggleGroup.getToggles()
为您提供所有切换的列表。
如果您想要选择切换:
toggleGroup.getSelectedToggle()
给你一个Toggle对象。
所以我想在这一行RadioButton temp = toggleGroup.getSelectedObject();
你必须像那样RadioButton temp =(RadioButton) toggleGroup.getSelectedObject();