如何在Java-Swing中实现这个Android-Drop-Down-Menu?我只能找到Android的教程(使用XML-Layout),但没有找到Swing的教程。
屏幕截图:
我已经有了这段代码:
JMenu menu = new JMenu();
BufferedImage image = null;
try {
image = ImageIO.read(new URL("https://cdn0.iconfinder.com/data/icons/very-basic-android-l-lollipop-icon-pack/24/menu2-32.png"));
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
menu.setIcon(new ImageIcon(image));
JMenuBar menuBar = new JMenuBar();
menuBar.setBackground(Color.WHITE);
menuBar.setBorderPainted(false);
menuBar.add(menu);
JMenuItem item = new JMenuItem("Test Item");
item.setBorderPainted(false);
item.setBackground(Color.WHITE);
menu.add(item);
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(500, 550);
JPanel panel_1 = new JPanel();
panel_1.add(menuBar);
frame.add(panel_1);
frame.setVisible(true);
但是你可以看到它看起来与截图不完全相同:
有人知道如何实现这个目标吗?
答案 0 :(得分:2)
我认为您只是在寻找JCheckBoxMenuItem。您可以将其添加到任何JMenu。 http://docs.oracle.com/javase/7/docs/api/javax/swing/JCheckBoxMenuItem.html
(如果我正确理解了您的问题,那么您已经在Android中实现了此功能,并且有兴趣将其移植到Swing应用程序中。)