防止BoxLayout扩展孩子



我想在JPanel中垂直堆叠一些JComponents,这样它们就可以堆叠在顶部,任何额外的空间都在底部。我用的是BoxLayout。每个组件都包含一个JTextArea,在必要时允许文本换行。因此,基本上,我希望每个组件的高度都是显示(可能是包装的)文本所需的最小值。

下面是我正在做的一个包含的代码示例:

import javax.swing.*;
import java.awt.*;
public class TextAreaTester {
    public static void main(String[] args){
        new TextAreaTester();
    }
    public TextAreaTester(){
        JFrame frame = new JFrame();
        JPanel panel = new JPanel();
        panel.setLayout(new BoxLayout(panel,BoxLayout.PAGE_AXIS));
        panel.setPreferredSize(new Dimension(100,400));
        for(int i = 0; i<3; i++){
            JPanel item = new JPanel(new BorderLayout());
            JTextArea textarea = new JTextArea("this is a line of text I want to wrap if necessary");
            textarea.setWrapStyleWord(true);
            textarea.setLineWrap(true);
            textarea.setMaximumSize( textarea.getPreferredSize() );
            item.add(textarea,BorderLayout.NORTH);
            panel.add(item);
        }
        panel.add(Box.createGlue());
        frame.add(panel);
        frame.setVisible(true);
        frame.pack();  
    }
}

子jpanel正在展开以填充垂直空间。我试着用胶水,因为我以为这就是胶水的作用,但它似乎什么也没做。任何帮助吗?

注意:我发现问题看起来几乎相同,但没有一个答案我可以应用。

一个解决方案:嵌套JPanel与外部JPanel使用Borderlayout,并使用JPanel添加BoxLayout到这个Borderlayout。NORTH,也称为BorderLayout。PAGE_START:

Edit for Kleopatra:

import javax.swing.*;
import java.awt.*;
public class TextAreaTester {
   public static void main(String[] args) {
      new TextAreaTester();
   }
   public TextAreaTester() {
      JFrame frame = new JFrame();
      JPanel panel = new JPanel();
      panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));
      // panel.setPreferredSize(new Dimension(100,400));
      for (int i = 0; i < 3; i++) {
         JPanel item = new JPanel(new BorderLayout());
         // item.setLayout(new BoxLayout(item,BoxLayout.LINE_AXIS));
         JTextArea textarea = new JTextArea(
               "this is a line of text I want to wrap if necessary", 3, 35);
         textarea.setWrapStyleWord(true);
         textarea.setLineWrap(true);
         // textarea.setMaximumSize(textarea.getPreferredSize());
         // item.setMaximumSize( item.getPreferredSize() );
         item.add(new JScrollPane(textarea), BorderLayout.NORTH);
         panel.add(item);
      }
      panel.add(Box.createGlue());
      JPanel mainPanel = new JPanel(new BorderLayout()) {
         private final int prefW = 100;
         private final int prefH = 400;
         @Override
         public Dimension getPreferredSize() {
            return new Dimension(prefW, prefH);
         }
      };
      // mainPanel.setPreferredSize(new Dimension(100, 400));
      mainPanel.add(panel, BorderLayout.PAGE_START);
      frame.add(mainPanel);
      frame.setVisible(true);
      // frame.getContentPane().add(jp);
      frame.pack();
   }
}

或者,您可以使用Box.Filler。只需将对panel.add(Box.createGlue())的调用替换为

panel.add(new Box.Filler(new Dimension(0, 0),
    new Dimension(0, Short.MAX_VALUE),
    new Dimension(0, Short.MAX_VALUE)));

如果你想在水平布局中实现相同的效果,只需在Dimension调用中使用Short.MAX_VALUE来设置宽度而不是高度。

相关内容

  • 没有找到相关文章

最新更新