简体   繁体   English

如何获取 JList 的未选中单元格的背景颜色?

[英]How to get the background color of a JList's unselected cell?

I am trying to find the color used by cells that are unselected.我正在尝试查找未选中的单元格使用的颜色。 This is usually white, however when I call UIManager.getColor("List.background"), it appears to be the same grey color used for JPanels.这通常是白色的,但是当我调用 UIManager.getColor("List.background") 时,它似乎与用于 JPanel 的灰色相同。 When I call new JList().getBackground(), I get the same horrid grey color back, but when I actually use the list, it's white.当我调用 new JList().getBackground() 时,我得到了同样可怕的灰色,但是当我实际使用列表时,它是白色的。 How do I get this white color from JList or UIManager?如何从 JList 或 UIManager 获得这种白色? What I am currently doing to find the background color is this:我目前正在寻找背景颜色是这样的:

String[] contents = {"Foo", "Bar"};
JList list = new JList(contents);

// Prints true
System.out.println(list.getBackground().equals(new Color(237, 236, 235)));

Since List.selectionBackground gives me the blue color I expect to see when I click on a cell, I figured List.background would give me the color of an unselected cell.由于 List.selectionBackground 为我提供了单击单元格时希望看到的蓝色,因此我认为 List.background 会给我未选中单元格的颜色。 What is List.background actually returning a value for then?那么 List.background 实际上返回的值是什么?

On related note, is there a listing somewhere of what these keys means?在相关说明中,这些键的含义是否有列表? I've found a related question , but none of the answers provide descriptions of the keys.我找到了一个 相关的问题,但没有一个答案提供对键的描述。

EDIT: It appears this is the correct way to do this.编辑:看来这是正确的方法。 However, at least in GNOME the problem arises when calling setLookAndFeel.然而,至少在 GNOME 中,调用 setLookAndFeel 时会出现问题。

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
String[] contents = {"Foo", "Bar"};
JList list = new JList(contents);

// Prints true
System.out.println(list.getBackground().equals(new Color(237, 236, 235)));

// Add list to a pane and display it, and it will actually be white

Looks like this might be a bug, sorry guys.看起来这可能是一个错误,对不起各位。

SwingUtilities.updateComponentTreeUI(myFrame);

EDIT:编辑:

hmmm, can you clarify me (us) what is your issue based on this example (from died Old.Good.Forum.Sun.com, :-) and I know that not Jeanette resist)嗯,你能根据这个例子澄清一下我(我们)你的问题是什么(来自死亡的 Old.Good.Forum.Sun.com,:-) 我知道不是珍妮特抗拒)

Note: better would be change this value by using getListCellRendererComponent注意:最好使用getListCellRendererComponent更改此值

EDIT2: please for another play with that check camickr UI Defaluts EDIT2:请再次使用该检查 camickr UI Defaluts

import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;

public class JListDisabledItemDemo implements ItemListener, Runnable {

    private static final String ITEMS[] = {"Black", "Blue", "Green", "Orange", "Purple", "Red", "White", "Yellow"};
    private JList jList;
    private JCheckBox[] checkBoxes;
    private boolean[] enabledFlags;

    @Override
    public void run() {
        JPanel pnlEnablers = new JPanel(new GridLayout(0, 1));
        pnlEnablers.setBorder(BorderFactory.createTitledBorder("Enabled Items"));
        checkBoxes = new JCheckBox[ITEMS.length];
        enabledFlags = new boolean[ITEMS.length];
        for (int i = 0; i < ITEMS.length; i++) {
            checkBoxes[i] = new JCheckBox(ITEMS[i]);
            checkBoxes[i].setSelected(true);
            checkBoxes[i].addItemListener(this);
            enabledFlags[i] = true;
            pnlEnablers.add(checkBoxes[i]);
        }
        jList = new JList(ITEMS);
        jList.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
        jList.setSelectionModel(new DisabledItemSelectionModel());
        jList.setCellRenderer(new DisabledItemListCellRenderer());
        jList.addListSelectionListener(new ListSelectionListener() {

            @Override
            public void valueChanged(ListSelectionEvent e) {
                if (!e.getValueIsAdjusting()) {
                    System.out.println("selection");
                }
            }
        });
        JScrollPane scroll = new JScrollPane(jList);
        scroll.setHorizontalScrollBarPolicy(ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
        scroll.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
        JFrame f = new JFrame("Colors");
        Container contentPane = f.getContentPane();
        contentPane.setLayout(new GridLayout(1, 2));
        contentPane.add(pnlEnablers);
        contentPane.add(scroll);
        f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        f.setSize(240, 280);
        f.setLocationRelativeTo(null);
        UIManager.put("List.background", Color.red);
        UIManager.put("List.selectionBackground", Color.orange);
        UIManager.put("List.selectionForeground", Color.blue);
        UIManager.put("Label.disabledForeground", Color.magenta);
        SwingUtilities.updateComponentTreeUI(f);
        f.setVisible(true);
    }

    @Override
    public void itemStateChanged(ItemEvent event) {
        JCheckBox checkBox = (JCheckBox) event.getSource();
        int index = -1;
        for (int i = 0; i < ITEMS.length; i++) {
            if (ITEMS[i].equals(checkBox.getText())) {
                index = i;
                break;
            }
        }
        if (index != -1) {
            enabledFlags[index] = checkBox.isSelected();
            jList.repaint();
        }
    }

    public static void main(String args[]) {
        SwingUtilities.invokeLater(new JListDisabledItemDemo());
    }

    private class DisabledItemListCellRenderer extends DefaultListCellRenderer {

        private static final long serialVersionUID = 1L;

        @Override
        public Component getListCellRendererComponent(JList list, Object value, int index, boolean isSelected, boolean cellHasFocus) {
            if (enabledFlags[index]) {
                return super.getListCellRendererComponent(list, value, index, isSelected, cellHasFocus);
            }
            Component comp = super.getListCellRendererComponent(list, value, index, false, false);
            comp.setEnabled(false);
            return comp;
        }
    }

    private class DisabledItemSelectionModel extends DefaultListSelectionModel {

        private static final long serialVersionUID = 1L;

        /**
         * No need to override addSelectionInterval(int index0, int index1)
         * since we're using SINGLE_SELECTION mode for this demo.
         */
        @Override
        public void setSelectionInterval(int index0, int index1) {
            if (enabledFlags[index0]) {
                super.setSelectionInterval(index0, index0);
            } else {
                /*
                 * The previously selected index is before this one,
                 * so walk forward to find the next selectable item.
                 */
                if (getAnchorSelectionIndex() < index0) {
                    for (int i = index0; i < enabledFlags.length; i++) {
                        if (enabledFlags[i]) {
                            super.setSelectionInterval(i, i);
                            return;
                        }
                    }
                } /*
                 * Otherwise, walk backward to find the next selectable item.
                 */ else {
                    for (int i = index0; i >= 0; i--) {
                        if (enabledFlags[i]) {
                            super.setSelectionInterval(i, i);
                            return;
                        }
                    }
                }
            }
        }
    }
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM