将图像添加到JCheckBoxMenuItem

时间:2015-06-08 05:47:34

标签: java image swing imageicon jmenuitem

我已经获得了一项任务,我需要使用JCheckBoxMenuItem并在右侧添加图像

enter image description here

我已经使用了setIcon()方法。

创建自定义面板并向其添加图像,然后将面板添加到复选框。

尝试添加如下面板。

   JCheckBoxMenuItem item = new JCheckBoxMenuItem();
    item.setText("Option1");
    JPanel panel = new JPanel(new FlowLayout(FlowLayout.RIGHT));
    JLabel label = new JLabel(new ImageIcon(
                        "C:\\Users\\abcd\\Desktop\\facebook.jpg"));
    panel.add(label);
    item.add(panel);

以上看起来似乎有效,但只有右侧的图像可见,复选框和文字丢失了。

2 个答案:

答案 0 :(得分:3)

这可以通过标准复选框菜单项完成,只需调整水平文本位置即可。

enter image description here

import java.awt.*;
import java.awt.image.BufferedImage;
import javax.swing.*;
import javax.swing.border.EmptyBorder;

public class CheckBoxMenuItemIconPosition {

    private JComponent ui = null;
    private JMenuBar mb = null;

    CheckBoxMenuItemIconPosition() {
        initUI();
    }

    public void initUI() {
        if (ui!=null) return;

        ui = new JPanel(new BorderLayout(4,4));
        ui.setBorder(new EmptyBorder(40,160,40,160));
    }

    public JComponent getUI() {
        return ui;
    }

    public JMenuBar getMenuBar() {
        if (mb != null) return mb;

        mb = new JMenuBar();

        JMenu fileMenu = new JMenu("File");
        mb.add(fileMenu);

        BufferedImage bi = new BufferedImage(20, 20, BufferedImage.TYPE_INT_RGB);
        JCheckBoxMenuItem checkBoxMenuItem = new JCheckBoxMenuItem(
                "Text", new ImageIcon(bi));
        checkBoxMenuItem.setHorizontalTextPosition(SwingConstants.LEFT);
        fileMenu.add(checkBoxMenuItem);

        return mb;
    }

    public static void main(String[] args) {
        Runnable r = new Runnable() {
            @Override
            public void run() {
                CheckBoxMenuItemIconPosition o = new CheckBoxMenuItemIconPosition();

                JFrame f = new JFrame(o.getClass().getSimpleName());
                f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
                f.setLocationByPlatform(true);

                f.setContentPane(o.getUI());
                f.setJMenuBar(o.getMenuBar());
                f.pack();
                f.setMinimumSize(f.getSize());

                f.setVisible(true);
            }
        };
        SwingUtilities.invokeLater(r);
    }
}

答案 1 :(得分:2)

请参阅http://www.java2s.com/Code/Java/Swing-JFC/Aquickdemonstrationofcheckboxmenuitems.htm

请花一点时间阅读此代码。

TLDR:

JMenuToolbar jmt = new JMenuToolBar(); // ignore for now, will be added to JFrame

JMenu menu = new JMenu("File") // create a new JMenu that can be 'dropped down'
JCheckBoxMenuItem open = new JCheckBoxMenuItem("Open",new ImageIcon("open_img.gif")); // add a JCheckBoxMenuItem to add to JMenu

menu.add(open); // add to menu
jmt.add(menu);  // add to JMenuToolBar

// in main or wherever, add the JMenuToolBar
JFrame frame = new JFrame("Window");
frame.add(jmt); // add to main Frame