0

我有一个扩展 JLabel 的自定义类。对于该类的特定实例,我想在左侧的文本中添加一些间距。我需要间距,因为我正在设置这个 JLabel 的背景,我不希望文本在彩色背景的边缘附近出现。我摸索了很多并实现了这个(在paint函数中):

if (condition) {
    bgColor = Color.red;
    setBackground(bgColor);
    setOpaque(true);
    // This line merely adds some padding on the left
    setBorder(BorderFactory.createEmptyBorder(0, 10, 0, 0));
}
else {
    setOpaque(false);
}

这似乎有效,因为它增加了我想要的间距,但是它有一个不幸的副作用,因为它似乎破坏了整个应用程序其余部分的重绘......似乎只有那个特定的组件正在重绘,而不是应用程序的其余部分。我最终将其具体追踪到 setBorder 调用...设置任何类型的边框似乎都会导致相同的损坏行为。我们有两个不同版本的应用程序,一个在 Java 1.5 中运行,一个在 Java 1.6 中运行,Java 1.6 版本似乎可以正常工作,而 Java 1.5 版本则不能。无法将旧版本升级到 Java 1.6...我需要可以在 Java 1.5 中使用的东西。另外,我试过这个(只是想看看它是什么样子):

setHorizontalTextPosition(JLabel.CENTER);

这似乎也以完全相同的方式破坏了重新绘制。我查看了我们应用程序的源代码,发现了我们设置边框的其他地方(包括空边框),但在 JLabels 上找不到任何地方(只有面板、按钮等)。有人以前见过这样的东西吗?知道如何解决吗?或者也许是另一种获得我需要的间距的方法可以解决这个错误?谢谢。

4

1 回答 1

3

问题是您在paint 方法中调用了该代码。您不应该这样做,因为它会冻结 EDT,并在挥杆绘画管道中出现不需要的循环。

您应该将该代码放在构造函数上,并在应用程序生命周期的其他地方更改组件设计状态。

如果您想了解更多关于 Swing 绘画的信息,请阅读 push-pixels.org 上的“Swing 绘画管道”帖子。

请注意,您可以使用 BorderFactory.createCompoundBorder 组合任意两个边框。然后,您可以使用 emptyBorder 和任何其他设置间距来绘制外边框。

编辑:添加示例。

package com.stackoverflow.swing.paintpipeline;

import java.awt.Color;
import java.awt.Graphics;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.ArrayList;
import java.util.List;
import java.util.Random;

import javax.swing.BorderFactory;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.SwingUtilities;
import javax.swing.Timer;
import javax.swing.border.Border;


public class JLabelSetBorderPaintProblem extends JLabel {

    public JLabelSetBorderPaintProblem(String text) {
        super(text);
    }

    /*
     * @see javax.swing.JComponent paint(java.awt.Graphics)
     */
    @Override
    public void paint(Graphics g) {
        super.paint(g);
        // You can not call setBorder here.

        // Please check javadoc.
    }

    /*
     * @see javax.swing.JComponent paintBorder(java.awt.Graphics)
     */
    @Override
    protected void paintBorder(Graphics g) {
        super.paintBorder(g);
        // Here is where the Swing painting pipeline draws the current border
        // for the JLabel instance.

        // Please check javadoc.
    }

    // Start me here!
    public static void main(String[] args) {
        // SetBorder will dispatch an event to Event Dispatcher Thread to draw the
        // new border around the component - you must call setBorder inside EDT.
        // Swing rule 1.
        SwingUtilities.invokeLater(new Runnable() {

            @Override public void run() {
                // Inside EDT
                JFrame frame = new JFrame("JLabel setBorder example");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                // Add the JLabel
                final JLabelSetBorderPaintProblem label = new JLabelSetBorderPaintProblem("Just press or wait...");
                frame.add(label);

                // And change the border...
                label.addMouseListener(new MouseAdapter() {
                    @Override public void mousePressed(MouseEvent e) {
                        label.setBorder(BORDERS.get(new Random().nextInt(BORDERS.size())));
                    }
                });

                // ...whenever you want
                new Timer(5000, new ActionListener() {
                    @Override public void actionPerformed(ActionEvent e) {
                        label.setBorder(BORDERS.get(new Random().nextInt(BORDERS.size())));
                    }
                }).start();

                frame.pack();
                frame.setVisible(true);
            }
        });

    }

    public static final List<Border> BORDERS;
    static {
        BORDERS = new ArrayList<Border>();
        BORDERS.add(BorderFactory.createLineBorder(Color.BLACK));
        BORDERS.add(BorderFactory.createLineBorder(Color.RED));
        BORDERS.add(BorderFactory.createEtchedBorder());
        BORDERS.add(BorderFactory.createTitledBorder("A border"));
    }
}
于 2009-05-30T00:02:09.127 回答