1

上下文:在抽认卡应用程序中,我有一个视图CardData(代表抽认卡一侧的数据结构)。它的最基本形式是String text. 视图(称为CardDataView)由text不可编辑JTextAreaJScrollPane.

有一次,我需要(垂直)排列一堆这些CardDataViews,所以我把它们放在一个垂直的Box.

pack这就是问题所在:当我将窗口从“首选”大小(由 本质上,它在不应该调整文本区域的大小。

这是我的代码(精简和简化):

public class DebugTest {

    public static void main(String[] args) {
        CardDataView cdv = new CardDataView(new CardData(
                "Lorem ipsum dolor sit amet filler filler filler"));
        JFrame frame = new JFrame();
        frame.add(new JScrollPane(cdv), BorderLayout.CENTER);
        frame.pack();
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }

}

class CardData {
    private String text; // text on the card

    /*
     * NOTE: This class has been simplified for SSCCE purposes. It's not really
     * just a String field in production; rather, it has an image and other
     * properties.
     */

    public CardData(String text) {
        super();
        this.text = text;
    }

    public String getText() {
        return text;
    }

}

class CardDataView extends Box {
    private JTextArea txtrText; // the text area for the text

    /*
     * NOTE: As with CardData, this class has been simplified. It's not just a
     * JTextArea; it's also an ImageView (custom class; works fine), among other
     * things.
     */

    public CardDataView(CardData data) {
        super(BoxLayout.Y_AXIS);
        txtrText = new JTextArea();
        txtrText.setLineWrap(true);
        txtrText.setRows(3);
        txtrText.setEditable(false);
        txtrText.setWrapStyleWord(true);
        final JScrollPane scrollPane = new JScrollPane(txtrText);
        add(scrollPane);
        txtrText.setText(data.getText());
    }
}

现在,真正让我感到困惑的事情(除非我做错了)是,如果我基本上内联数据和视图类,只需创建一个带有文本和滚动窗格的文本区域(即使设置相同的行数) ,相同的换行设置等),它的行为符合预期。会发生什么?

关注点: - 所有进口都井然有序。- 如果您想知道为什么CardLayoutViewBox: 在生产中,它不仅仅是一个文本框。当它是 aJPanel和 IsetLayout而不是super. - 如果我根本不使用CardData该类(并手动设置文本区域的文本),也会发生同样的故障。

有任何想法吗?

4

1 回答 1

2

把我的评论回答:

使用GridBagLayoutwithGridBagConstraints.VERTICAL/NONE作为gridBagLayoutObject.fill值,而不是BoxLayout. 由于在向 的 中添加组件时CENTERJFrame从不BorderLayout尊重preferredSize()组件的CENTER。因此尝试将你的东西添加到 a然后JPanel把它JPanel放在CENTER.JFrame

于 2012-06-29T19:48:34.043 回答