JRadioButton:如何用IconImage替换文本?

时间:2011-07-21 11:02:03

标签: java swing jradiobutton

我想用一个图标替换单选按钮列表中的文本。

我试过这个:

rotateButton = new JRadioButton(rotateIcon.getImage());

但是这会用图标替换单选按钮和文本。我想保留单选按钮并显示图像。

我该怎么办?


我目前得到的是:

Enter image description here

但我希望它最终得到这个:

Enter image description here

4 个答案:

答案 0 :(得分:9)

创建一个没有文本的JRadioButton,并在旁边放置一个带有图像的JLabel。您还可以创建一个类来隐藏复杂性。

import java.awt.event.ActionListener;

import javax.swing.*;
import javax.swing.event.ChangeListener;

public class RadioButtonWithImage extends JPanel {

private JRadioButton radio = new JRadioButton();
private JLabel image;

public RadioButtonWithImage(Icon icon) {
    image = new  JLabel(icon);
    add(radio);
    add(image);
}

public void addToButtonGroup(ButtonGroup group) {
    group.add(radio);
}

public void addActionListener(ActionListener listener) {
    radio.addActionListener(listener);
}

public void addChangeListener(ChangeListener listener) {
    radio.addChangeListener(listener);
}

public Icon getImage() {
    return image.getIcon();
}

public void setImage(Icon icon) {
    image.setIcon(icon);
}

} // end class RadioButtonWithImage

答案 1 :(得分:5)

答案 2 :(得分:5)

我刚刚使用此来源复制了您描述的行为:

import java.awt.Image;
import javax.swing.*;
import javax.imageio.ImageIO;
import java.net.URL;

class RadioWithImage {

    public static void main(String[] args) throws Exception {
        URL url = new URL("http://www.gravatar.com/avatar/" +
            "a1ab0af4997654345d7a949877f8037e?s=128");
        Image image = ImageIO.read(url);
        final ImageIcon imageIcon = new ImageIcon(image);
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JRadioButton radioButton = new JRadioButton("A.T.", imageIcon);
                JOptionPane.showMessageDialog(null, radioButton);
            }
        });
    }
}

Where is the radio button 'selected' icon?

这对我来说似乎是个错误,虽然我记不起看到带有图标的收音机了。他们应该怎么样?


时间进入我的“黑客行为”。

import javax.swing.*;

class RadioWithImage {

    public static void main(String[] args) throws Exception {
        String url = "http://www.gravatar.com/avatar/" +
            "a1ab0af4997654345d7a949877f8037e?s=128";
        final String html = "<html><body><img src='" +
            url +
            "' width=128 height=128>";
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                JRadioButton radioButton = new JRadioButton(html);
                JOptionPane.showMessageDialog(null, radioButton);
            }
        });
    }
}

Radio Button with Image

如果符合以下条件,此技术将无法使用:

  1. 用例需要其他类型的图标(按下,翻转,选择等)
  2. 该按钮被禁用(它将呈现错误)。

答案 3 :(得分:3)

没有单选按钮构造函数允许将图像作为内容参数而不是文本。用图像替换单选按钮文本的唯一方法是生成html并将其作为参数传递给默认构造函数。

import javax.swing.*;

class RadioWithImage {

    public static void main(String[] args) throws Exception {
        URL url = Windows_ChordsGenerator.class.getResource("/images/img1.png");

        final String html = "<html><body><img src='" + url.toString() +"'>";

        JRadioButton radioButton = new JRadioButton(html);     
       }
}