I have a JSplitPane which when shown should split the pane by 50%.

Now on giving an argument of 0.5 (as suggested) to setDividerLocation, Java seems to treat it as a normal number instead of a percentage. As in, the divider, instead of going to the middle of the pane, is almost at the start of the left pane (the pane is vertically split). Any work arounds?

link|improve this question

76% accept rate
feedback

7 Answers

The setDividerLocation( double ) method only works on a "realized" frame, which means after you've packed or made the frame visible.

The setDividerLocation( int ) method can be used at any time.

link|improve this answer
feedback

Am I missing something? There seem to be a lot of rather convoluted answers to this question... but I think a simple setResizeWeight(0.5) would solve the issue ... it's described in the SplitPane Tutorial

link|improve this answer
+1 - also described (hidden?!) as comment to lins314159's answer... – Carlos Heuberger Aug 14 '11 at 19:59
Oh oops, I overlooked that in the comments. Thanks. Seems odd though the most popular answer didn't mention it... on a question that's 2 yrs old now. – Sam Dealey Aug 16 '11 at 3:14
feedback

this fixes it:

public class JSplitPane3 extends JSplitPane {
    private boolean hasProportionalLocation = false;
    private double proportionalLocation = 0.5;
    private boolean isPainted = false;

    public void setDividerLocation(double proportionalLocation) {
        if (!isPainted) {
            hasProportionalLocation = true;
            this.proportionalLocation = proportionalLocation;
        } else {
            super.setDividerLocation(proportionalLocation);
        }
    }

    public void paint(Graphics g) {
        super.paint(g);
        if (!isPainted) {
            if (hasProportionalLocation) {
                super.setDividerLocation(proportionalLocation);
            }
            isPainted = true;
        }
    }

}
link|improve this answer
Just for clarification I have gotten it to work using only paint() and no hasProportionalLocation if I specify it manually in the code. Much shorter than this monstrosity – TheLQ Jul 9 '10 at 8:06
Thanks. Just came across this and it has been bugging us for ages. +1 – Andez Feb 9 at 14:44
feedback

If you're happy for the divider to move to the middle every time you resize the pane, you could add a ComponentListener and have its componentResized method call setDividerLocation(0.5).

link|improve this answer
3  
You would use the setResizeWeight(...) method for this. – camickr Dec 10 '09 at 15:23
feedback

There's a solution here that is a simple function that doesn't require sub-classing or any other changes to your splitpane.

link|improve this answer
feedback

This works for me, based on Dave Rays link.

/**
 * Set JSplitPane proportional divider location
 * 
 * @param jsplitpane JSplitPane to set
 * @param proportionalLocation double <0.0; 1.0>
 */
public static void setJSplitPaneDividerLocation(final JSplitPane jsplitpane, final double proportionalLocation)
{
    if (jsplitpane.isShowing())
    {
        if (jsplitpane.getWidth() > 0 && jsplitpane.getHeight() > 0)
        {
            jsplitpane.setDividerLocation(proportionalLocation);
        }
        else
        {
            jsplitpane.addComponentListener(new ComponentAdapter()
            {
                @Override
                public void componentResized(ComponentEvent ce)
                {
                    jsplitpane.removeComponentListener(this);
                    setJSplitPaneDividerLocation(jsplitpane, proportionalLocation);
                }
            });
        }
    }
    else
    {
        jsplitpane.addHierarchyListener(new HierarchyListener()
        {
            @Override
            public void hierarchyChanged(HierarchyEvent e)
            {
                if ((e.getChangeFlags() & HierarchyEvent.SHOWING_CHANGED) != 0 && jsplitpane.isShowing())
                {
                    jsplitpane.removeHierarchyListener(this);
                    setJSplitPaneDividerLocation(jsplitpane, proportionalLocation);
                }
            }
        });
    }
}
link|improve this answer
feedback

use setResizeWeight(double);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.