我想将鼠标悬停在我的GUI(地图)上的许多JButton上,并显示该位置的名称,例如曼彻斯特和伦敦。我有一个按钮的代码,但它不适用于多个按钮,并打印所有按钮位置的最后out
消息(因为我有10个按钮)。
如果button1
为真,则通过我的paintComponent()
方法在指定区域的GUI上绘制文本。
我该如何解决这个问题?
button1.addMouseMotionListener(this);
button2.addMouseMotionListener(this);
public void mouseMoved(MouseEvent arg0)
{
if(button1.contains(arg0.getPoint()))
{
button1 = true;
out = "test 1";
repaint();
}
if(!button1.contains(arg0.getPoint()))
{
b1 = false;
out = " ";
repaint();
}//same for all 10 buttons but change variables
}
答案 0 :(得分:10)
为什么不使用已经存在的工具提示API?
button.setTooltip("Manchester");
您甚至可以使用HTML文本生成格式化结果。
button.setTooltip("<html>Manchester<br>53.4800° N, 2.2400° W</html>");
如果嵌入了图像,您甚至可以提供图像......
button.setTooltip("<html><img src=" + getClass().getResource("/someimage") + "/>Manchester<br>53.4800° N, 2.2400° W</html>");
答案 1 :(得分:3)
不要使用MouseListener
中的MosueMotionListener
或JButton
,此方法已在JButtons API
中正确实施,
没有理由,我找不到使用repaint()
来完成这项工作的理由
另一种方法是将ChangeListener
添加到JButton
并从衍生的ButtonModel
更快地发布SSCCE,简短,可运行,可编辑,只需JFrame
一个JButton
答案 2 :(得分:0)
这个答案对于JDK 8用户来说很酷,所以试试吧:
常规文字
buttonyoumade.setToolTipText("Text you choose");
用于HTML使用
anotherbuttonyoumade.setToolTipText("<html> any valid html code </html>");