4

我有以下几行来获取 JList 项目的工具提示文本:

JList aList=new JList(aData)
{
  public String getToolTipText(MouseEvent evt)  // This method is called as the cursor moves within the list.
  {
    String tooltipText="Some tooltip";
    int tooltipWidth= ?
    return tooltipText;
  }
}

在 getToolTipText() 中,如何获取 tooltipText 的宽度?

4

3 回答 3

2

您可以使用FontMetrics来确定某些文本的大小。

FontMetrics metrics = graphics.getFontMetrics(font);
int adv = metrics.stringWidth(text);

http://docs.oracle.com/javase/tutorial/2d/text/measuringtext.html

要查找使用的字体,您可以查询LookAndFeel您正在使用的字体

UIDefaults uidefs = UIManager.getLookAndFeelDefaults();
Font font = uidefs.getFont("ToolTip.font");
System.out.println(font);
// prints: FontUIResource[family=Dialog,name=Dialog,style=plain,size=12]

要了解您可以使用的键(此处为“ToolTip.font”),您可以查看 Swing 中默认 LookAndFeels 的文档,例如 Nimbus:

http://docs.oracle.com/javase/tutorial/uiswing/lookandfeel/_nimbusDefaults.html#primary

于 2012-06-10T16:07:35.713 回答
1

感谢答案,我想通了,这就是我所做的:

UIDefaults uidefs=UIManager.getLookAndFeelDefaults();
Font font=uidefs.getFont("ToolTip.font");
GraphicsEnvironment ge=GraphicsEnvironment.getLocalGraphicsEnvironment();
Graphics2D g2d=ge.createGraphics(new BufferedImage(1,1,1));
FontMetrics fontMetrics=g2d.getFontMetrics();
Top_Line_Width=fontMetrics.stringWidth("Toptip text");
于 2012-06-10T17:57:02.530 回答
1

我像这样在 html 中形成我的工具提示 : "<html>first line<Br>========<Br>second line</html>",我希望分隔线"====="与第一行的长度相匹配,所以它看起来更好,..

考虑备选方案 2 和 3,它们都不需要计算并且看起来比“等号行”更好。

HTML 工具提示

import java.awt.*;
import javax.swing.*;
import javax.swing.border.LineBorder;

public class HtmlToolTip {

    HtmlToolTip() {
        String attempt1 = "<html>first line 1<Br>========<Br>second line</html>";
        JLabel label1 = new JLabel(attempt1);
        label1.setBorder(new LineBorder(Color.BLACK));

        String attempt2 = "<html><u>first line 2</u><br>second line</html>";
        JLabel label2 = new JLabel(attempt2);
        label2.setBorder(new LineBorder(Color.BLACK));

        String attempt3 = "<html>first line 3<hr>second line</html>";
        JLabel label3 = new JLabel(attempt3);
        label3.setBorder(new LineBorder(Color.BLACK));

        JPanel p = new JPanel(new FlowLayout(FlowLayout.LEADING,5,5));
        p.add(label1);
        p.add(label2);
        p.add(label3);

        JOptionPane.showMessageDialog(null, p);
    }

    public static void main(String[] args) throws Exception {
        SwingUtilities.invokeLater(new Runnable() {
            public void run() {
                new HtmlToolTip();
            }
        });
    }
}
于 2012-06-10T18:05:10.067 回答