JPanel上的组件在setLayout(null)时未显示

时间:2012-12-06 17:58:44

标签: java swing jpanel layout-manager absolutelayout

有人能说出为什么组合框没有显示?我有一个控制器:

public class TestController extends JPanel {

TestView cgView;

public TestController() 
{

    setLayout(null);

    cgView=new TestView();

    add(cgView);

}
public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
        public void run() {
             JFrame fr = new JFrame("testt");
                fr.setSize(1200,1000);
                fr.setResizable(false);

                TestController cgc=new TestController();
                fr.setBackground(Color.white);
                fr.setVisible(true);

                fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                fr.add(cgc);

         }
        });
    }


}

和视图

public class TestView extends JPanel{
    private static final long serialVersionUID = 1L;

    public JComboBox<String> comboBox; 

    public TestView() {

          comboBox= new JComboBox<>(new String[] {"option1", "option2" });
          comboBox.setBounds(100,500, 100, 20);
          add(comboBox);

    }
}

由于TestController中的 setLayout(null),我看不到comboBox。如果我将 add(cgView.comboBox)添加到我的TestContoller()中,那么它看起来像这样:

public TestController() 
    {

        setLayout(null);

        cgView=new TestView();

        add(cgView);
        add(cgView.comboBox);

    }

我能看到它。有人能说出原因吗?

所以我的解决方案是始终在TestController中添加组件,或者将TestController作为属性传递给TestView(所以在TestView()中我会像这样添加它们this.parentPanel.add(comboBox)。还有其他解决方案吗? ?

1 个答案:

答案 0 :(得分:3)

  • 几乎不要使用null布局
  • 而是使用嵌套在JPanel中的最佳布局组合来为您的GUI实现令人满意的布局。
  • 如果您确实使用了null布局,则您完全有责任设置添加到该容器的所有组件的大小和位置。
  • 您当前的问题是,您从未向TestView提供大小或位置,然后将其添加到使用null的布局容器中。
  • 您不应将组件(上面的JComboBox)添加到多个容器中。
  • 之后,不要在JFrame上致电setVisible(true),您已添加了所有组件并在其上调用了pack()

如,

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

public class TestController extends JPanel {
   private static final int PREF_W = 1000;
   private static final int PREF_H = 800;
   TestView cgView;

   public TestController() {
      setLayout(null);
      cgView = new TestView();
      cgView.setSize(getPreferredSize());
      add(cgView);
   }

   @Override
   public Dimension getPreferredSize() {
      return new Dimension(PREF_W, PREF_H);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            JFrame fr = new JFrame("testt");
            // fr.setSize(1200, 1000);
            fr.setResizable(false);
            TestController cgc = new TestController();
            fr.setBackground(Color.white);
            // fr.setVisible(true);
            fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            fr.add(cgc);
            fr.pack(); //!! added 
            fr.setVisible(true); // !! moved
         }
      });
   }
}

但最好使用布局:

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

public class TestController extends JPanel {
   private static final int PREF_W = 1000;
   private static final int PREF_H = 800;
   TestView cgView;

   public TestController() {
      //!!  setLayout(null);
      cgView = new TestView();
      //!! cgView.setSize(getPreferredSize());
      add(cgView);
   }

   @Override
   public Dimension getPreferredSize() {
      return new Dimension(PREF_W, PREF_H);
   }

   public static void main(String[] args) {
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
            JFrame fr = new JFrame("testt");
            // fr.setSize(1200, 1000);
            fr.setResizable(false);
            TestController cgc = new TestController();
            fr.setBackground(Color.white);
            // fr.setVisible(true);
            fr.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            fr.add(cgc);
            fr.pack(); //!! added 
            fr.setVisible(true); // !! moved
         }
      });
   }
}

class TestView extends JPanel {
   private static final long serialVersionUID = 1L;
   public JComboBox<String> comboBox;

   public TestView() {
      comboBox = new JComboBox<String>(new String[] { "option1", "option2" });
      // comboBox.setBounds(100, 500, 100, 20);
      add(comboBox);
   }
}

修改
OP在评论中提到:

  

'几乎从不'?在哪些情况下你会使用它[空布局]?

我很少使用它,例如当我想通过动画或使用MouseListener移动组件时,但即便如此,很多人建议您创建自己的布局来处理它,例如Rob Camick的Drag Layout