我想将我的按钮调整为相同大小,然后放在JApplet上的Panel中。我尝试过使用
public void init() {
// TODO start asynchronous download of heavy resources
JButton btnWestern=new JButton("Western");
JButton btnPop=new JButton("Pop");
GridBagConstraints c4=new GridBagConstraints();
JPanel jPanel1 = new JPanel();
getContentPane().setLayout(new java.awt.GridBagLayout());
jPanel1.setLayout(new java.awt.GridBagLayout());
c4.gridx = 0;
c4.gridy = 0;
c4.insets = new Insets(36, 10, 0, 249);
jPanel1.add(btnWestern, c4);
c4.gridx = 0;
c4.gridy = 1;
c4.insets = new Insets(33, 10, 0, 249);
jPanel1.add(btnPop, c4);
add(jPanel1, new java.awt.GridBagConstraints());
}
当我跑步时,这就是我得到的
但是我注意到如果我将按钮文本更改为相同或具有相同的长度,例如
JButton btnWestern=new JButton("Button1");
JButton btnPop=new JButton("Button2");
我得到了所需的输出
我该怎样做才能确保即使按钮的文字长度不一样,按钮的大小也相同?
答案 0 :(得分:3)
如果你还没有,我建议你阅读How to Use GridBagLayout教程。 GridBagLayout功能强大,但它也是可用的更复杂的LayoutManagers之一。
我相信您需要设置GridBagConstraints.fill
属性才能获得所需的行为。
在你的情况下,这应该是
c4.fill = GridBagConstraints.HORIZONTAL;
编辑(对观察到的行为的一些解释)当您在两个按钮上使用相同的文本时,它们的计算大小最终会相同,因此可以根据需要进行渲染。当您使用不同大小的文本时,默认情况下按钮将以适合文本的大小呈现。 GridBagConstraints.fill
的默认值为GridBagConstraints.NONE
,表示LayoutManger不会调整组件大小。将填充更改为GridBagConstraints.HORIZONTAL
会告诉LayoutManger水平调整组件的大小以填充显示区域。