
I am pretty new to java swing and not familiar with paint(). I want to create a button in java swing with above look. Can anyone help me to do this. Any guidance would be grateful. Thanks in advance
|
I googled the Facebook blue RGB: 59, 89, 182/Hex Code is #3B5998 and Font family: Tahoma. using that here is what I got with a few calls like
unless you are looking for identical (which IMO this is about as best as it gets without using actual image)... than setting the image of the button would be the best way |
|||||||||||||||
|
|
To create a customized button like your example, I think the best way is preparing a graphics document (image etc.) and then setting it as a property of your button:
|
|||||||||||||||
|
|
On Oracle javadoc, you can see jbutton javadoc, http://docs.oracle.com/javase/6/docs/api/javax/swing/JButton.html Jbutton java method |
|||
|
|
|
If you want to completely override the look of your button, the most general solution is to create your own
You can then paint whatever you want, taking into account the state of your button (rollover, focused, armed, pressed, etc). Take a look at the superclass implementation for basic ideas on how to do this. Then just set the UI of the button you want to change:
|
|||
|
|
JButton, except for theBackground and Foreground Colour? To me it's the same :-) Why you can not usebutton.setBackground(Color.BLUE.darker())andbutton.setForeground(Color.LIGHT_GRAY.brighter()), do change the font of the JButton, if you want more effects ? – nIcE cOw Jan 4 at 15:10button.setBorder(BorderFactory.createCompoundBorder( BorderFactory.createBevelBorder( BevelBorder.RAISED, Color.BLUE.darker(), Color.BLACK), BorderFactory.createEtchedBorder(EtchedBorder.LOWERED))); button.setFont(new Font("Arial", Font.BOLD, 14));– nIcE cOw Jan 4 at 15:52