我在我的应用程序中使用Swing和JRadioButton
。我需要在我的按钮上设置图像和文字。为此,我使用这个:
JRadioButton button1 = new JRadioButton("text", iconpath, false);
但它提供输出的是隐藏单选按钮并显示图像。
如何解决这个问题,有什么建议吗?我们可以为JCheckbox创建类似问题的东西吗?
答案 0 :(得分:4)
设置JRadioButton
或JCheckBox
的图标会替换这些控件使用的默认字形 - 我知道,这很烦人。
最简单的解决方案是简单地创建一个JLabel
,它可以与JRadioButton
相关联,也许使用某种Map
来维持
更长远的解决方案可能是创建一个自定义组件,将概念结合到一个自定义和可重复使用的组件中,例如......
public class XRadioButton extends JPanel {
private JRadioButton radioButton;
private JLabel label;
public XRadioButton() {
setLayout(new GridBagLayout());
add(getRadioButton());
add(getLabel());
}
public XRadioButton(Icon icon, String text) {
this();
setIcon(icon);
setText(text);
}
protected JRadioButton getRadioButton() {
if (radioButton == null) {
radioButton = new JRadioButton();
}
return radioButton;
}
protected JLabel getLabel() {
if (label == null) {
label = new JLabel();
label.setLabelFor(getRadioButton());
}
return label;
}
public void addActionListener(ActionListener listener) {
getRadioButton().addActionListener(listener);
}
public void removeActionListener(ActionListener listener) {
getRadioButton().removeActionListener(listener);
}
public void setText(String text) {
getLabel().setText(text);
}
public String getText() {
return getLabel().getText();
}
public void setIcon(Icon icon) {
getLabel().setIcon(icon);
}
public Icon getIcon() {
return getLabel().getIcon();
}
}