Colorize a tab in a JTabbedPane using java swing

后端 未结 4 1078
孤街浪徒
孤街浪徒 2021-01-15 03:24

I am trying to change the background color of my tabs in a JTabbedPane. I tried JTabbedPane.setBackgroudAt(0, Color.GRAY) and JTabbedPane.set

相关标签:
4条回答
  • 2021-01-15 04:01

    It may be a problem that there is nothing added yet to the tab.

    Try setting the content manager of the content panel to BorderLayout, adding a JPanel with BorderLayout. Center and then coloring that panel.

    0 讨论(0)
  • 2021-01-15 04:06
    • most of method for JTabbedPane is protected in the API, and not accesible from Swing methods

    • have to look for Custom XxxTabbedPaneUI, override these methods, and could be accesible from outside

    • correct way would be to implement Custom Look & Feel only, part of them override JTabbedPane

    • example for Custom XxxTabbedPaneUI

    0 讨论(0)
  • 2021-01-15 04:08

    You should consider using a Look and Feel that does what you want, or failing that, changing the default UIManger settings for a JTabbedPane:

    UIManager.put("TabbedPane.background", Color.GRAY);
    

    If you opt for the latter, it must be done before you create your GUI.

    For more on this, please see Rob Camick's excellent blog on the subject: UIManager Defaults.

    Edit: I was wrong. It should be:

    UIManager.put("TabbedPane.unselectedBackground", Color.GRAY);
    

    But note that this may not work with every Look and Feel.

    0 讨论(0)
  • 2021-01-15 04:21

    You can change the background color of the tab using setBackgroundAt(), as shown here.

    tab

    You can change the background color of the tab's content using setBackground(), as shown here. Typically you have to do this on the tab's content, as the enclosing JTabbedPane background color is obscured by the content.

    content

    If you still have trouble, please edit your question to include an sscce based on either example that exhibits the problem you envounter.

    Addendum: Combining the methods is also possible:

    combined

    import java.awt.*;
    import java.awt.event.*;
    import java.util.Random;
    import javax.swing.*;
    
    public class JTabbedTest {
    
        private static JTabbedPane jtp;
    
        public static void main(String[] args) {
            EventQueue.invokeLater(new Runnable() {
    
                @Override
                public void run() {
                    JFrame f = new JFrame();
                    f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    
                    jtp = new JTabbedPane();
                    jtp.setPreferredSize(new Dimension(320, 200));
                    jtp.addTab("Reds", new ColorPanel(0, Color.RED));
                    jtp.setBackgroundAt(0, Color.RED);
                    jtp.addTab("Greens", new ColorPanel(1, Color.GREEN));
                    jtp.setBackgroundAt(1, Color.GREEN);
                    jtp.addTab("Blues", new ColorPanel(2, Color.BLUE));
                    jtp.setBackgroundAt(2, Color.BLUE);
    
                    f.add(jtp, BorderLayout.CENTER);
                    f.pack();
                    f.setVisible(true);
                }
            });
        }
    
        private static class ColorPanel extends JPanel implements ActionListener {
    
            private final Random rnd = new Random();
            private final Timer timer = new Timer(1000, this);
            private Color color;
            private Color original;
            private int mask;
            private JLabel label = new JLabel("Stackoverflow!");
            private int index;
    
            public ColorPanel(int index, Color color) {
                super(true);
                this.color = color;
                this.original = color;
                this.mask = color.getRGB();
                this.index = index;
                this.setBackground(color);
                label.setForeground(color);
                this.add(label);
                timer.start();
            }
    
            @Override
            public void actionPerformed(ActionEvent e) {
                color = new Color(rnd.nextInt() & mask);
                this.setBackground(color);
                jtp.setBackgroundAt(index, original);
            }
        }
    }
    
    0 讨论(0)
提交回复
热议问题