我正在动态创建一个RadioGroup
with RadioButton
s,并且需要默认选中一个单选按钮。
我已经通过同时使用radioButton.setChecked(true)
和radioButton.toggle();
我遇到的问题是,当我在运行时选择另一个单选按钮时,第一个单选按钮保持选中状态,因此我最终在单选组中得到了两个选中的单选按钮。
有没有人遇到过这个问题并知道如何解决?
private RadioButton addRadioButton(String type, String price){
RadioButton radio = new RadioButton(Order.this);
radio.setText(type + " (" + Utils.formatCurrency(price) + ")");
radio.setTextAppearance(Order.this, R.style.portalCellTextStyle);
radio.setTextSize(TypedValue.COMPLEX_UNIT_SP, 10);
radio.setTag(price);
if(type.toLowerCase().equals("m"))
radio.toggle();
return radio;
}