如何仅更改一个组件的工具提示颜色?
我知道您可以执行以下操作来更改工具提示颜色:
UIManager.put("ToolTip.background", new ColorUIResource(255, 247, 200));
但这会改变所有组件的工具提示背景,而不仅仅是一个。
有什么简单的解决办法吗?
向@MadProgrammer 和@Reimeus +1 提供建议和示例。
这些都是正确的。
添加...
没有默认方法可以做到这一点。您必须扩展ToolTip
该类,使用前景色和背景色创建自己的自定义ToolTip
,然后扩展JComponent
s 类(JButton
,JLabel
等都是JComponent
s )并覆盖其createToolTip()
方法并将您的自定义设置ToolTip
为JComponent
s ToolTip
,如下所示:
这是我做的一个例子:
import java.awt.Color;
import javax.swing.JButton;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JToolTip;
import javax.swing.SwingUtilities;
/**
*
* @author David
*/
public class CustomJToolTipTest {
private JFrame frame;
public CustomJToolTipTest() {
initComponents();
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
new CustomJToolTipTest();
}
});
}
private void initComponents() {
frame = new JFrame("Test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setResizable(false);
JButton button = new JButton("button") {
//override the JButtons createToolTip method
@Override
public JToolTip createToolTip() {
return (new CustomJToolTip(this));
}
};
button.setToolTipText("I am a button with custom tooltip");
frame.add(button);
frame.pack();
frame.setVisible(true);
}
}
class CustomJToolTip extends JToolTip {
public CustomJToolTip(JComponent component) {
super();
setComponent(component);
setBackground(Color.black);
setForeground(Color.red);
}
}
没有标准的方法可以做到这一点,但您可以覆盖JComponent.createToolTip()
. 这是一个按钮示例:
MyButton testButton = new MyButton("Move Mouse Over Button");
testButton.setToolTipText("Some text");
class MyButton extends JButton {
public MyButton(String text) {
super(text);
}
@Override
public JToolTip createToolTip() {
return (new MyCustomToolTip(this));
}
}
class MyCustomToolTip extends JToolTip {
public MyCustomToolTip(JComponent component) {
super();
setComponent(component);
setBackground(Color.black);
setForeground(Color.red);
}
}
如果您可以访问源代码,我不会推荐这个。但如果没有,您可以利用 HTML 格式化功能更改颜色。
JButton b = new JButton();
b.setToolTipText("<html><div style='margin:0 -3 0 -3; padding: 0 3 0 3; background:green;'>My Text</div></html>");
您需要负边距,因为存在标准边距,否则不会着色。我们通过添加填充来弥补边距。3 px 似乎适用于金属 LAF。