我是Java和GUI编程的新手。我有以下问题。
在我的GUI中,我有一个带有JLabel的JTextField,其读取为“ Radius”。现在,我想在带有带有问号的JTextField旁边放置一个图标,单击该图标会详细说明JLabel的含义。例如,在这种情况下,它应该弹出一条消息,说明“要在图像上绘制的圆的半径”。鼠标移动时,该消息应该消失。下面是我要实现的图形说明。
我的问题很基本。我想知道可以使用哪个Swing组件来实现此目的?我尝试在网上查找它,但不知道要查找哪个组件。任何帮助和建议,将不胜感激。
答案 0 :(得分:3)
您可以轻松完成。您所要做的只是使用 JLabel ,并且在其上没有任何文字。而是在上面放一张图片
此代码让您将Image设置为JLabel
import java.awt.FlowLayout;
import javax.swing.ImageIcon;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class AddingIconJLabel {
public static void main(String[] args) {
JFrame.setDefaultLookAndFeelDecorated(true);
JFrame frame = new JFrame();
frame.setTitle("JLabel Test");
frame.setLayout(new FlowLayout());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
ImageIcon imageIcon = new ImageIcon("yourFile.gif");
JLabel label = new JLabel(imageIcon);
frame.add(label);
frame.pack();
frame.setVisible(true);
}
}
其次,将 ToolTip 放置在JLabel上,以使您的文字在图像上停留时显示在屏幕上
这是有用的代码提示
JLabel label = new JLabel("Username");
label.setToolTipText("Enter your username");
答案 1 :(得分:1)
我想知道为什么没人建议为此使用Popup
。
基本上,这是工具提示(和弹出菜单)“在幕后”使用的内容。这里的主要优点是您无需仔细考虑布局,并且(与标准工具提示相反)可以完全控制布局的出现时间和消失时间。因此,您可以明确地在单击图标时创建弹出窗口,并在鼠标退出图标时显式隐藏它:
以下是MCVE的代码:
import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.Point;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.BorderFactory;
import javax.swing.Icon;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import javax.swing.Popup;
import javax.swing.PopupFactory;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
public class PopupExample
{
public static void main(String[] args)
{
SwingUtilities.invokeLater(() -> createAndShowGui());
}
private static void createAndShowGui()
{
JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel p = new JPanel(new BorderLayout());
p.add(new JLabel("Radius:"), BorderLayout.WEST);
p.add(new JTextField(10), BorderLayout.CENTER);
Icon icon = UIManager.getIcon("OptionPane.questionIcon");
JLabel label = new JLabel(icon);
addHelpPopup(label, "<html>"
+ "The help text. You can (but do <br>"
+ "not have to) use <i>HTML</i> here for <br>"
+ "<u>formatting</u>"
+ "</html>");
p.add(label, BorderLayout.EAST);
f.getContentPane().setLayout(new FlowLayout());
f.getContentPane().add(p);
f.add(label);
f.setSize(400, 300);
f.setLocationRelativeTo(null);
f.setVisible(true);
}
private static void addHelpPopup(Component component, String text)
{
component.addMouseListener(new MouseAdapter()
{
private Popup popup;
@Override
public void mouseClicked(MouseEvent e)
{
if (popup != null)
{
popup.hide();
popup = null;
}
PopupFactory popupFactory = PopupFactory.getSharedInstance();
JLabel label = new JLabel(text);
label.setOpaque(true);
label.setBorder(BorderFactory.createCompoundBorder(
BorderFactory.createLineBorder(Color.BLACK),
BorderFactory.createEmptyBorder(5, 5, 5, 5)));
Dimension dim = label.getPreferredSize();
Point p = e.getLocationOnScreen();
popup = popupFactory.getPopup(
component, label, p.x, p.y - dim.height);
popup.show();
}
@Override
public void mouseExited(MouseEvent e)
{
if (popup != null)
{
popup.hide();
popup = null;
}
}
});
}
}