我应该使用什么布局管理器

What layout manager should I use

我正在 java 中聊天,需要在 JPanel 中显示旧消息。我需要一个图像和要显示的 sent/received 消息,每一个都在自己的行中。我目前拥有的代码:

JFrame f = new JFrame();
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JPanel container = new JPanel();
container.setPreferredSize(new Dimension(300, 400));

// Printing five messages
for (int i = 0; i < 5; i++) {
    JPanel p = new JPanel();
    p.setPreferredSize(new Dimension(300, 40));
    p.setBorder(BorderFactory.createLineBorder(Color.BLACK));
    p.setLayout(new BoxLayout(p, BoxLayout.X_AXIS));

    JLabel img = new JLabel("Image : ");
    JLabel txt = new JLabel("This is some text");

    p.add(img);
    p.add(txt);

    img.setAlignmentX(Component.LEFT_ALIGNMENT);
    txt.setAlignmentX(Component.LEFT_ALIGNMENT);

    container.add(p);
}

f.add(container);
f.pack();
f.setLocationRelativeTo(null);
f.setVisible(true); 

结果:

现在我正在指定每条消息的宽度和高度,这不太好,因为它应该自动调整到它的内容。我觉得应该有一个好的布局管理器,但我是 swing 的新手,所以感谢帮助,因为我不知道该使用哪个。

it should automatically resize to its content.

文本换行是这里的主要问题。

一种方法可能是:

  1. 使用垂直框 - 它允许每个组件具有不同的高度
  2. 将文本换行 HTML - 它将允许文本换行

类似于:

import java.awt.*;
import javax.swing.*;

public class Chat extends JPanel
{
    private Box messageBox = Box.createVerticalBox();

    public Chat()
    {
        setLayout( new BorderLayout() );
        add(messageBox, BorderLayout.PAGE_START);

        addMessage("Short message");
        addMessage("A longer message that should wrap as reqired onto another line. This should happen dynamically");
    }

    public void addMessage(String text)
    {
        JPanel messagePanel = new JPanel( new BorderLayout() );

        JLabel label = new JLabel( new ImageIcon("about16.gif") );
        messagePanel.add(label, BorderLayout.LINE_START);

        JLabel message = new JLabel("<html>" + text + "</html>");
        messagePanel.add(message);

        messageBox.add(messagePanel);
    }

    private static void createAndShowGUI()
    {
        JFrame frame = new JFrame("Chat");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.add(new Chat());
        frame.pack();
        frame.setSize(200, 100);
        frame.setLocationByPlatform( true );
        frame.setVisible( true );
    }

    public static void main(String[] args) throws Exception
    {
        java.awt.EventQueue.invokeLater( () -> createAndShowGUI() );
    }
}