上下文:在抽认卡应用程序中,我有一个视图CardData
(代表抽认卡一侧的数据结构)。它的最基本形式是String text
. 视图(称为CardDataView
)由text
不可编辑JTextArea
的JScrollPane
.
有一次,我需要(垂直)排列一堆这些CardDataView
s,所以我把它们放在一个垂直的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());
}
}
现在,真正让我感到困惑的事情(除非我做错了)是,如果我基本上内联数据和视图类,只需创建一个带有文本和滚动窗格的文本区域(即使设置相同的行数) ,相同的换行设置等),它的行为符合预期。会发生什么?
关注点: - 所有进口都井然有序。- 如果您想知道为什么CardLayoutView
是Box
: 在生产中,它不仅仅是一个文本框。当它是 aJPanel
和 IsetLayout
而不是super
. - 如果我根本不使用CardData
该类(并手动设置文本区域的文本),也会发生同样的故障。
有任何想法吗?