For example:

layeredPane.setLayout(new MigLayout());
layeredPane.add(component, "pos 50 50, width 100, height 100", 0);

The 0 in this case does affect the component's layering, but I can't seem to figure out exactly how. I would like to overlay components, but because there is the second layout constraint for the MigLayout, I can't combine layering and positioning as usual with a JLayeredPane. Thanks

link|improve this question

I don't think this code would work. You can't add a MigLayout object to a LayeredPane. – Chris Dennett Jan 14 at 23:05
Apologies, my mistake. Edited. – paranoid-android Jan 15 at 5:35
feedback

1 Answer

up vote 2 down vote accepted

JLayeredPane haven't got implemented LayoutManager then there you have to setBounds or setSize by default, first parameter in constructor is used for JComponents, second for Type of Layer,

link|improve this answer
Check edit. The code works and the third parameter does affect the overlaying of the components added to it - I would just like to know if anyone knows exactly how it affects it. – paranoid-android Jan 15 at 5:37
@paranoid-android second params is for LayersType <DEFAULT_LAYER, PALETTE_LAYER, MODAL_LAYER, POPUP_LAYER, DRAG_LAYER> – mKorbel Jan 15 at 8:37
How would arbitrary int values for LayersType affect component order (z-axis) in that case? – paranoid-android Jan 15 at 8:57
@paranoid-android good catch, really I haven't any idea, maybe you mixing add(JComponent, int (order)) with add(JComponent, layertype), add component with method setLayer(Component c, int layer, int position) – mKorbel Jan 15 at 9:09
That's a really good idea, wasn't aware of setLayer(Component c, int layer, int position). Should read the api more.. Thanks, I'll try it. – paranoid-android Jan 15 at 9:20
feedback

Your Answer

 
or
required, but never shown

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