Monday, March 23, 2009

How do I display an image in a JButton with the text centered below the image?

Use the JButton classes setVerticalTextPosition() and setHorizontalTextPosition() methods to control the text positioning.


JButton button = new JButton("Press Me", icon);

// Text below image

button.setVerticalTextPosition(SwingConstants.BOTTOM);

// And centred

button.setHorizontalTextPosition(SwingConstants.CENTER);

No comments: