我应该使用什么样的布局来创建页面像这样: 它应该可以调整大小 它有两个主要面板Right and Left?
答案 0 :(得分:3)
“主文本”文本区域将获得额外的空间,并且在按钮面板居中时会给予额外的高度。
import java.awt.*;
import javax.swing.*;
import javax.swing.border.EmptyBorder;
public class EndOfLineButtonLayout {
public static void main(String[] args) {
Runnable r = new Runnable() {
@Override
public void run() {
// the GUI as seen by the user (without frame)
JPanel gui = new JPanel(new BorderLayout());
gui.setBorder(new EmptyBorder(2, 3, 2, 3));
JPanel textPanel = new JPanel(new BorderLayout(5,5));
textPanel.add(new JScrollPane(new JTextArea("Top Text",3,20)),
BorderLayout.PAGE_START);
textPanel.add(new JScrollPane(new JTextArea("Main Text",10,10)));
gui.add(textPanel, BorderLayout.CENTER);
JPanel buttonCenter = new JPanel(new GridBagLayout());
buttonCenter.setBorder(new EmptyBorder(5,5,5,5));
JPanel buttonPanel = new JPanel(new GridLayout(0,1,5,5));
for (int ii=1; ii<6; ii++) {
buttonPanel.add(new JButton("Button " + ii));
}
// a component added to a GBL with no constraint will be centered
buttonCenter.add(buttonPanel);
gui.add(buttonCenter, BorderLayout.LINE_END);
JFrame f = new JFrame("Demo");
f.add(gui);
// Ensures JVM closes after frame(s) closed and
// all non-daemon threads are finished
f.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
// See http://stackoverflow.com/a/7143398/418556 for demo.
f.setLocationByPlatform(true);
// ensures the frame is the minimum size it needs to be
// in order display the components within it
f.pack();
// should be done last, to avoid flickering, moving,
// resizing artifacts.
f.setVisible(true);
}
};
// Swing GUIs should be created and updated on the EDT
// http://docs.oracle.com/javase/tutorial/uiswing/concurrency/initial.html
SwingUtilities.invokeLater(r);
}
}
答案 1 :(得分:0)
你可以使用gridbag布局,尝试使用netbeans,我已经尝试过,发现非常有用。 使用netbeans创建它后,您可以使用相同的内容并构建任何类型的布局。
祝其他解决方案好运。
P.S。边框布局非常适合您的要求,但我提到了这一点,以防您想要做更多的事情。
答案 2 :(得分:0)
我会使用BorderLayout。
创建三个JPanel并将其添加到JFrame,如下所示:
public class YourClass extends JFrame{
//code here
this.setLayout(new BorderLayout());
this.add(TopPanel, BorderLayout.NORTH);
this.add(RightPanel, BorderLayout.EAST);
this.add(MainPanel, BorderLayout.CENTER);
this.pack();
this.setVisible(true);
答案 3 :(得分:0)
两个主面板将使用BorderLayout放置在主JPanel中。左侧面板将使用BorderLayout.CENTER放置,右侧面板将使用BorderLayout.LINE_END放置。
左侧面板将使用BoxLayout,Y轴分隔左侧面板中的两个JPanel。
右侧按钮面板将使用GridBagLayout。这会使按钮的大小相同,并允许您使用Insets为按钮添加一些间距。
按钮将从右按钮面板的顶部到底部间隔开。如果您希望所有按钮都朝向右侧按钮面板的顶部,您可以使用FlowLayout将右侧按钮面板放在另一个JPanel中。