在JList

时间:2018-12-10 15:08:37

标签: java swing jlist paintcomponent jcomponent

我正在尝试删除(或只是使其不可见)JList的背景和边框。

当我在其上设置透明颜色时,我的JList背景保持白色。

enter image description here

这是我自定义的jcombox渲染器类:

package Utils.UI.CustomeComboBox;

import Parameter.Model.ThemeEnum;
import Repository.Parameter.ThemeParameterRepository;
import Utils.UI.FileGetter;
import Utils.UI.Utils;

import javax.swing.*;
import javax.swing.plaf.basic.BasicComboBoxRenderer;
import java.awt.*;

public class CustomComboBoxRenderer extends BasicComboBoxRenderer {

    private Image backgroundImage;
    private Font font;
    private final static int WIDTH = 190;
    private final static int HEIGHT = 49;

    public CustomComboBoxRenderer() {
        super();

        this.setOpaque(false);
        this.setHorizontalTextPosition(AbstractButton.CENTER);
        this.setVerticalAlignment(AbstractButton.CENTER);
        this.setPreferredSize(new Dimension(CustomComboBoxRenderer.WIDTH, CustomComboBoxRenderer.HEIGHT));
        this.font = FileGetter.getFont().deriveFont(Utils.DEFAULT_SIZE_BUTTON_TEXT);
    }

    public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus)
    {
        super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
        list.setOpaque(false);
        list.setBackground(new Color(255, 0, 0, 0));
        list.setBorder(BorderFactory.createEmptyBorder());
        if (index == -1 || isSelected) {
            this.backgroundImage = FileGetter.getImage("_button13.png");
        } else {
            this.backgroundImage = FileGetter.getImage("_button02.png");
        }

        return this;
    }

    @Override
    public void paint(Graphics g) {
        super.paint(g);
        Graphics2D g2d = (Graphics2D) g;

        // background image
        g2d.drawImage(this.backgroundImage, 0, 0, this);

        // text
        g2d.setFont(this.font);
        g2d.setColor((Color) ThemeParameterRepository.getColor(ThemeEnum.SECOND_COLOR).getValue());
        FontMetrics fontMetrics = g.getFontMetrics(this.font);
        g2d.drawString(
            this.getText(),
            (CustomComboBoxRenderer.WIDTH - fontMetrics.stringWidth(this.getText())) / 2,
            ((CustomComboBoxRenderer.HEIGHT - fontMetrics.getHeight()) / 2) + fontMetrics.getAscent()
        );

        g2d.finalize();
    }
}

我尝试将setOpaque(false)setBackground(new Color(255, 0, 0, 0))放在每个组件上,但是效果不佳。

一种解决方案是调整列表中我的图像的大小,但是我的图像不是矩形的,因此列表背景的角是可见的。

2 个答案:

答案 0 :(得分:1)

我认为您不希望在单元格渲染器中进行这种更改,因为它负责绘制列表单元格(默认情况下并非不透明),而不是JList本身。

相反,为什么不在创建JList之后简单地为其赋予透明背景色呢?

 list.setBackground(new Color(0, 0, 0, 0));

但是,如果执行此操作,则必须注意将图形放置在不透明项顶部时可能出现的图形瑕疵。我发现重新粉刷持有JList的容器可以解决此问题:

import javax.swing.*;
import javax.swing.event.ListSelectionEvent;
import javax.swing.event.ListSelectionListener;

public class JListTest {


    private static void createAndShowGui() {
        final JFrame frame = new JFrame("JList Test");
        final JPanel panel = new JPanel();

        String[] listData = {"One", "Two", "Three", "Four", "Five", "Six"};
        final JList<String> list = new JList<>(listData);
        // list.setOpaque(false);
        list.setBackground(new Color(0, 0, 0, 0));
        list.addListSelectionListener(new ListSelectionListener() {

            @Override
            public void valueChanged(ListSelectionEvent e) {
                panel.repaint();
            }
        });

        panel.add(list);

        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(panel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(() -> createAndShowGui());
    }
}

请注意,如果JList由JScrollPane持有,则必须将其组件设置为透明的,但是我不确定如果看不到滚动窗格,如何滚动。

答案 1 :(得分:0)

测试新概念时,请先使用标准JDK类对其进行测试。

因此,您可以通过将JList和默认渲染器设置为透明来做到这一点:

JList<String> list = new JList<String>(...);
list.setOpaque(false);
DefaultListCellRenderer renderer = new DefaultListCellRenderer();
renderer.setOpaque( false );
list.setCellRenderer( renderer );

此方法将使列表和渲染器透明,因此您看到的只是所选单元格的边框。

现在,一旦证明基本概念有效,就可以创建自定义渲染器。如果不起作用,则说明问题出在您的自定义代码上。

list.setBackground(new Color(255, 0, 0, 0));

请勿使用透明颜色设置列表的背景。这是一个已知的Swing问题。有关此问题的更多信息,请参见Backgrounds With Transparency

此外,您不应在渲染器中更改列表的属性。

其他一些评论:

  1. 通过覆盖paintComponent(...)而不是paint()来完成自定义绘制。
  2. 不要在绘画方法中设置渲染器组件的属性。也就是说,除非这些值更改,否则应在构造函数中设置border和opaque属性。
  3. 不要在渲染器中进行I / O。渲染器应读取构造函数中的文件,并将图像存储在缓存中以供快速参考。