vote up 0 vote down star

Normally with Java Swing you can set the background color of a button with:

myJButton.setBackground(Color.RED);

which would cause the button to be red. But on the Mac OS, this method seems to be ignored. The button just stays the default color.

How can the color of a JButton be set on the Mac OS?

flag

you are probably going to have to do it C somehow and access the functionally through JNI. I hate macs. – gmatt Jul 1 at 6:49
"Just because your unique doesn't mean your useful." – gmatt Jul 1 at 6:51

1 Answer

vote up 1 vote down check

Have you tried setting JButton.setOpaque(true)?

JButton button = new JButton("test");
button.setBackground(Color.RED);
button.setOpaque(true);
link|flag
Thanks. I completely missed the setOpaque() call. – Stephane Grenier Jul 2 at 14:40

Your Answer

Get an OpenID
or

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