我正在尝试以编程方式将一组 RadioButtons 添加到 RadioGroup 中,如下所示:
for (int i = 0; i < RANGE; i++) {
RadioButton button = new RadioButton(this);
button.setId(i);
button.setText(Integer.toString(i));
button.setChecked(i == currentHours); // Select button with same index as currently selected number of hours
button.setButtonDrawable(Color.TRANSPARENT);
button.setBackgroundResource(R.drawable.selector);
button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View view) {
((RadioGroup)view.getParent()).check(view.getId());
currentHours = view.getId();
}
});
radioGroupChild.addView(button);
}
我需要将按钮drawable设置为null(我只想在我的背景上显示文本)。在 XML 中手动执行此android:button="@null"
操作效果很好,但我不想对每个单选按钮进行硬编码。我试过只是做button.setButtonDrawable(null)
,但它没有改变任何东西。
任何帮助是极大的赞赏!