Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have two JButtons with texts "Ok" and "Cancel". I am using GridBagLayout to align them in a JDialog. I have set the anchor to GridBagConstraints.CENTER. Due to the difference in the number of characters in the texts "Ok" and "Cancel", the buttons are of different sizes. How do I align them correctly so that each of them have the same size. I tried the following but no avail.

okayButton.setSize(cancelButton.getSize());
share|improve this question
2  
just for emphasis: sizing/positioning the components is the job of the LayoutManager (which you already use, good!) - setSize in application code has (and is expected to and must have :-) no effect – kleopatra Sep 13 '11 at 6:32

3 Answers

up vote 1 down vote accepted

Try setting the fill to GridBagConstraints.BOTH and give both buttons equal weight.

share|improve this answer

GridBaglayout have got GridBagConstraints and in all cases accepts PreferredSize

examples here and here

share|improve this answer

Instead of okayButton.setSize(cancelButton.getSize()); use okayButton.setPreferredSize(cancelButton.getPreferredSize());

share|improve this answer
1  
-1 no ... never-ever use setXXSize in application code (for some reasons, see stackoverflow.com/questions/7229226/…) instead use a decent LayoutManager – kleopatra Sep 13 '11 at 7:34
thanks for the advice. – Mohayemin Sep 13 '11 at 9:29
By the way, should I remove answers those may mislead people? – Mohayemin Sep 16 '11 at 8:19

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.