编程语言
首页 > 编程语言> > java – 保持BoxLayout免于扩展儿童

java – 保持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();  
    }
}

孩子JPanels正在扩大以填补垂直空间.我尝试使用胶水,因为我认为这是什么胶水,但它似乎什么都不做.有帮助吗?

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

解决方法:

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

编辑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();
   }
}

标签:boxlayout,java,swing,jpanel,preferredsize
来源: https://codeday.me/bug/20190901/1783139.html