devxlogo

Button resizing

Button resizing

Question:
How do I force a java.awt.Button to resize to the size I want, instead of packing according to the size of its string label? Itried button.setSize(x,y) but it didn’t work.

Answer:
The easiest way to force the size of the button when packed is to subclass Button and override the getPreferredSize() method. However, it’s not the most elegant solution. You should change your container’s layout manager to one better suited for fixed placement. The most extreme solution is to set the layout manager to null and use setLocation() to explicitly place your button and setSize() to explicitly size it.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist