Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to make a JButton transparent (including the border) but not the text? I extend swing's JButton and override this:

@Override
public void paint(Graphics g) {
    Graphics2D g2 = (Graphics2D) g.create();
    g2.setComposite(AlphaComposite.getInstance(AlphaComposite.SRC_OVER, 0));
    super.paint(g2);
    g2.dispose();
}

but it makes everything transparent, including the text. Thanks.

share|improve this question
So you basically want a JButton without text? – jjnguy Jan 3 '11 at 15:48
2  
I think he wants the JButton with only the text. – jzd Jan 3 '11 at 15:57
5  
Custom painting (when required) is done by overriding the paintComponent() method, not the paint() method. – camickr Jan 3 '11 at 16:03

2 Answers

up vote 26 down vote accepted
button.setOpaque(false);
button.setContentAreaFilled(false);
button.setBorderPainted(false);
share|improve this answer
Oops, my answer looks just like yours. – jjnguy Jan 3 '11 at 16:04
Thank you anyway. – Rendicahya Jan 3 '11 at 16:11
thank you so much – Tushar Chutani Aug 31 '11 at 22:19

The following should do the trick.

public class PlainJButton extends JButton {

    public PlainJButton (String text){
        super(text);
        setBorder(null);
        setBorderPainted(false);
        setContentAreaFilled(false);
        setOpaque(false);
    }

    // sample test method
    public static void main(String[] args) {
        JFrame frame = new JFrame();
        JPanel pane = new JPanel();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        pane.add(new NoTextJButton("HI!!!!"));
        frame.add(pane);
        frame.pack();
        frame.setVisible(true);
    }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.