是否可以在使用AbsoluteLayout的JFrame边缘周围留出一些空间?当我有一个按钮作为JFrame上最向下的组件时,它会直接定位在JFrame窗口的底部边缘,看起来很糟糕。我想知道在使用AbsoluteLayout时是否可以在组件和JFrame边缘之间添加一些额外的空间。
答案 0 :(得分:2)
建议:
例如,请注意在下面的代码中创建的GUI中,由于空白边框,中心和底部JPanel不会出现在GUI的边缘:
import java.awt.BorderLayout;
import java.awt.Dimension;
import javax.swing.*;
public class ButtonAtBottom {
private static void createAndShowGui() {
JPanel bottomPanel = new JPanel();
bottomPanel.add(new JButton("Bottom Button"));
bottomPanel.setBorder(BorderFactory.createTitledBorder("Bottom Panel"));
JPanel centerPanel = new JPanel();
centerPanel.setBorder(BorderFactory.createTitledBorder("Center Panel"));
JPanel mainPanel = new JPanel(new BorderLayout());
mainPanel.add(centerPanel, BorderLayout.CENTER);
mainPanel.add(bottomPanel, BorderLayout.PAGE_END);
// **** here I add the border to the mainPanel which I'll
// make into the contentPane
int eb = 25;
mainPanel.setBorder(BorderFactory.createEmptyBorder(eb, eb, eb, eb));
// don't set the preferredSize per Kleopatra, but am doing it
// here simply to make code shorter for this sscce
mainPanel.setPreferredSize(new Dimension(500, 400));
JFrame frame = new JFrame("ButtonAtBottom");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setContentPane(mainPanel);
frame.pack();
frame.setLocationByPlatform(true);
frame.setVisible(true);
}
public static void main(String[] args) {
SwingUtilities.invokeLater(new Runnable() {
public void run() {
createAndShowGui();
}
});
}
}
答案 1 :(得分:0)
您可以使用Box.createRigidArea(维度)创建一个可以在按钮下方添加的空白区域。
答案 2 :(得分:0)
在内容面板上设置一个空边框,其中SIZE
是您想要的填充量。
JFrame frame = new JFrame();
JPanel panel = new JPanel(null);
panel.setBorder(BorderFactory.createEmptyBorder(SIZE,SIZE,SIZE,SIZE);
frame.setContentPane(panel);
//The rest
参数用于top,left,bottom和right padding,因此如果你想在每条边上有不同的填充,你可以相应地设置它。