在Java Swing中对齐标签和文本区域

时间:2013-08-31 06:20:05

标签: java swing user-interface awt layout-manager

我创建一个这样的框架。但我不知道如何调整这一点。 enter image description here

我想要暂时关闭版本1.1在顶部和下一行的中心主题标签后面是主题文本框,在下一行主体标签后跟正文文本框。

在我输入更多内容的文本框中,它不会反弹到下次。文本变为不可见但输入相同的行。我希望你帮助我。对不起,我的英语不好。

1 个答案:

答案 0 :(得分:1)

您需要更改layut manager。

首先看看A Visual Guide to Layout ManagersUsing Layout Managers

我个人推荐GridBagLayout,它是最灵活的,也是默认库中最复杂的布局管理器

您可能还会找到一些使用的How to use Scroll Panes

使用示例更新

请查看How to use GridBagLayout了解详情

enter image description here

import java.awt.Color;
import java.awt.Dimension;
import java.awt.EventQueue;
import java.awt.Graphics;
import java.awt.Graphics2D;
import java.awt.GridBagConstraints;
import java.awt.GridBagLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextArea;
import javax.swing.JTextField;
import javax.swing.UIManager;
import javax.swing.UnsupportedLookAndFeelException;

public class TestLayout27 {

    public static void main(String[] args) {
        new TestLayout27();
    }

    public TestLayout27() {
        EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                try {
                    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
                } catch (ClassNotFoundException | InstantiationException | IllegalAccessException | UnsupportedLookAndFeelException ex) {
                    ex.printStackTrace();
                }

                JFrame frame = new JFrame("Testing");
                frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                frame.add(new TestPane());
                frame.pack();
                frame.setLocationRelativeTo(null);
                frame.setVisible(true);
            }
        });
    }

    public class TestPane extends JPanel {

        public TestPane() {
            JLabel l1 = new JLabel("Timedoff Version 1.1", JLabel.CENTER);
            l1.setBackground(Color.red);
            l1.setForeground(Color.yellow);
            JLabel l2 = new JLabel("subject:");
            JTextField b = new JTextField("subject", 15);
            JLabel l3 = new JLabel("Body:");
            JTextArea a1 = new JTextArea("boby", 10, 20);

            setLayout(new GridBagLayout());
            GridBagConstraints gbc = new GridBagConstraints();
            gbc.gridx = 0;
            gbc.gridy = 0;
            gbc.anchor = GridBagConstraints.WEST;

            add(l1, gbc);
            gbc.gridy++;
            add(l2, gbc);
            gbc.gridy++;
            add(b, gbc);
            gbc.gridy++;
            add(l3, gbc);
            gbc.gridy++;
            add(a1, gbc);
        }        
    }
}