我希望增加和减少JButton
的焦点增益和丢失事件的大小。同时,我想要使用焦点JLabel
的文字更改JButton
。
如果我没有更改JLabel
文字,我可以更改按钮的大小,但是当我同时更改标签时,JButton
的大小不会改变。< / p>
以下是代码:
public class Main extends JFrame implements FocusListener {
JButton b1, b2;
JLabel lbl;
private static final long serialVersionUID = 1L;
public Main() {
setSize(600, 600);//Size of JFrame
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);//Sets if its visible.
JPanel panel = new JPanel();
b1 = new JButton("Start");//The JButton name.
b1.setRequestFocusEnabled(false);
b1.addFocusListener(this);
panel.add(b1);
b2 = new JButton("End");//The JButton name.
b2.setRequestFocusEnabled(false);
b2.addFocusListener(this);
panel.add(b2);
add(panel, BorderLayout.CENTER);
lbl = new JLabel(" ");
add(lbl, BorderLayout.SOUTH);
}
public static void main(String[] args) {
new Main();//Reads method main()
}
/*
* What the button does.
*/
@Override
public void focusLost(FocusEvent ae) {
if (ae.getSource() == b2) {
b2.setSize(55, 26);
} else if (ae.getSource() == b1) {
b1.setSize(55, 26);
}
}
@Override
public void focusGained(FocusEvent ae) {
if (ae.getSource() == b2) {
lbl.setText("End");
b2.setSize(55, 40);
} else if (ae.getSource() == b1) {
lbl.setText("Start");
b1.setSize(55, 40);
}
}
}
答案 0 :(得分:3)
问题在于您将绝对布局(或空布局)与隐式LayoutManager混合(默认情况下JPanel附带FlowLayout)。
当您在JLabel上调用setText(并且该文本发生更改)时,它会自动调用revalidate,这将最终触发LayoutManager布局组件。
使用LayoutManager,可选择设置一些约束和pref / min / max大小(但不建议使用后者)(并且你永远不要调用setLocation / setSize / setBounds),或者使用null-layout并自己设置位置和组件的大小(在这种情况下,你必须自己调用setSize / setLocation / setBounds)。
认真考虑阅读LayoutManager tutorial。有一个关于“不使用布局管理器(绝对定位)”的专门章节。
答案 1 :(得分:0)
我认为这是你想要实现的目标。
public class Main extends JFrame implements FocusListener {
JButton b1, b2;
JLabel lbl;
private static final long serialVersionUID = 1L;
public Main() {
setSize(600, 600);// Size of JFrame
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);// Sets if its visible.
JPanel panel = new JPanel();
panel.setLayout(null);
panel.setSize(this.getSize());
b1 = new JButton("Start");// The JButton name.
b1.setRequestFocusEnabled(false);
b1.addFocusListener(this);
b1.setLocation(10, 12);
panel.add(b1);
b2 = new JButton("End");// The JButton name.
b2.setRequestFocusEnabled(false);
b2.addFocusListener(this);
b2.setLocation(70, 12);
panel.add(b2);
add(panel, BorderLayout.CENTER);
lbl = new JLabel(" ");
add(lbl, BorderLayout.SOUTH);
}
public static void main(String[] args) {
new Main();// Reads method main()
}
/*
* What the button does.
*/
@Override
public void focusLost(FocusEvent ae) {
if (ae.getSource() == b2) {
b2.setSize(55, 26);
} else if (ae.getSource() == b1) {
b1.setSize(55, 26);
}
}
@Override
public void focusGained(FocusEvent ae) {
if (ae.getSource() == b2) {
lbl.setText("End");
b2.setSize(55, 40);
} else if (ae.getSource() == b1) {
lbl.setText("Start");
b1.setSize(55, 40);
}
}
}