我在 xml 中有一个单选组,按钮是通过编程方式生成的。如何以编程方式在按钮之间添加间距。
我认为这有点像LayoutParams
,但我的对象没有明显setPadding
或setMargins
方法。
这就是我正在尝试的
RadioButton currentButton = new RadioButton(context);
currentButton.setText(item.getLabel());
currentButton.setTextColor(Color.BLACK);
//add padding between buttons
LayoutParams params = new LayoutParams(context, null);
params. ... ??????
currentButton.setLayoutParams(params);