Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-4337702

FlowLayout gives a wrong minimum size if the first component is hidden.

XMLWordPrintable

    • Icon: Bug Bug
    • Resolution: Fixed
    • Icon: P3 P3
    • 1.4.0
    • 1.3.0
    • docs
    • beta
    • generic
    • generic



      Name: rlT66838 Date: 05/11/2000


      java version "1.3.0"
      Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
      Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)

        Bug 4284124 describes a problem with FlowLayout.preferredLayoutSize. The same
      problem still exists in FlowLayout.minimumLayoutSize.

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

      public class FixMe {
          public static void main(String[] args) {
              JFrame frame = new JFrame();
              JPanel panel = new JPanel();
              LayoutManager layout = new FlowLayout(FlowLayout.LEFT, 100, 0);
      JButton b1 = new JButton("B1");
      JButton b2 = new JButton("B2");
      panel.add(b1);
      panel.add(b2);
      frame.getContentPane().add(panel);
      frame.pack();
      frame.setVisible(true);
      b1.setVisible(false);
      System.out.println(layout.minimumLayoutSize(panel));
      b1.setVisible(true);
      b2.setVisible(false);
      System.out.println(layout.minimumLayoutSize(panel));
          }
      }
      (Review ID: 104736)
      ======================================================================

            sharonz Sharon Zakhour (Inactive)
            rlewis Roger Lewis (Inactive)
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

              Created:
              Updated:
              Resolved:
              Imported:
              Indexed: