Tagged Questions
Layout Managers are collection of standard Java Swing layout managers. It includes how to add Components to a Container, provide size and alignment hints, put space between components, and set the orientation of the container's layout so that it is appropriate for the locale in which the program is running.
17
votes
4answers
511 views
Should I avoid the use of set[Preferred|Maximum|Minimum]Size methods in Java Swing?
I received several times a critic for having suggested the use of the following methods:
setPreferredSize
setMinimumSize
setMaximumSize
on Swing components. I couldn't see any alternative to their ...
12
votes
5answers
15k views
jQuery Layout Manager
Has anyone had any experience with a jQuery-based layout manager? I know of only one (JX) but it's somewhat bloated for my needs. Any thoughts?
11
votes
4answers
5k views
How to use MigLayout?
I read some information about Java layout managers and the recommendation was MigLayout.
My problem is, that I didn't found any tutorial or easy step-by-step documentation.
So I want to know how this ...
8
votes
4answers
251 views
Java - Vertical “FlowLayout” with Horizontal Scrolling
As described in the title, I've been trying to set up sort of a vertical flow layout with horizontal scrolling. The components within the layout will be JLabels. Let me draw a picture:
...
8
votes
11answers
2k views
Which Swing layout(s) do you recommend?
There are 8 layout managers in the Java library alone, and then there's a bunch of 3rd party products as well.
The other day, I tried to use SpringLayout and... well, it ain't working out for me. See ...
5
votes
1answer
123 views
Is MVC in Swing Thread Safe
I'm trying to touch limits of MVC architecture in Swing, but as I tried everything all (from SwingWorker or Runnable#Thread) are done on EDT
my questions:
is there some limits or strictly depends ...
5
votes
2answers
165 views
How to overlay, resize and centre a component on a JPanel?
I've spent a while reading and experimenting here, and come up with a few approaches, but not got any of them to work completely yet, so I would like to know what more experienced Swing programmers ...
5
votes
3answers
631 views
Best Practice Guide: Swing
Does anybody know Swing related GUI guidelines - specifically on how to design Swing apps and which components I should use? I'm not looking for an official standard, but pragmatic tips I can use to ...
5
votes
3answers
2k views
Are there Constraint Layout Managers on iPhone OS?
The CA Programming Guide is talking about Constraints Layout Managers. However, the CALayer in the iPhone SDK doesn't have any constraints property or addConstraint method.
They say iPhone OS just ...
4
votes
3answers
56 views
Java and layout
I want to use JPanels like containers from top to bottom just like DIV tags when creating a web page? If I use BorderLayout, I can have only two (NORTH and SOUTH)?
I want to place different ...
4
votes
1answer
69 views
How returns XxxSize from JComponent(s) added to the JLabel
how can I correctly returns XxxSize from JComponent(s) added to the JLabel
1st. figure >> lets LayoutManager works like as for JPanel, JLabel returns Size(0, 0)
2nd. figure >> added some ...
4
votes
4answers
101 views
suitable LayoutManager for resizable components
sometime ago I read this article that shows a way to implement mouse resizable components in Swing.
The author uses a null LayoutManager in order to allow absolute component positioning.
I know that ...
4
votes
2answers
119 views
Java Swing pack() on a Window un-maximizes it, how to avoid that?
I've a window and since I dinamically change it's children (sometimes I swap JPanels), I found no other solution than calling pack() on the window to get the new element displayed. Otherwise it will ...
4
votes
1answer
88 views
Why does part of my RichJLabel text look covered/hidden?
I've been reading the Swing Hacks book and have used some of their code for the RichJLabel part. I understand what the code does, but not why some of the word is covered or looks hidden. It's not that ...
4
votes
4answers
93 views
Swing JComponents alignment like form
How to align these JComponents like a Form on center of the Content pane...using Swing
panel1.add(l1);
panel1.add(c1);
panel1.add(l2);
panel1.add(c2);
...
4
votes
6answers
141 views
Java Swing: Choosing the correct LayoutManager
I'm building a PropertyPanel. Currently I'm using a GridLayout to manage the JLabels and their corresponding fields where I can specify the value. But the problem is that the GridLayout automatically ...
4
votes
2answers
210 views
Swing: column-flow layout manager?
I'm looking for a LayoutManager that will allow me to show a set of components in a container (e.g. a JPanel), in columns, roughly as follows.
The container's width is an input constraint.
The ...
4
votes
1answer
71 views
How do I go about implementing a tray that appears on controls?
I have a screen like so:
+--------+---------------------+
|___A____| |
|________| JComponent I am |
|________| drawing on |
|________| __ __ |
...
4
votes
3answers
5k views
Fixed width, variable height in JPanel with flow
I have an annoying problem with Java’s layout managers. I have the following situation: In a panel A are two other panels B with an absolute layout and C with a FlowLayout. B is highly customized and ...
4
votes
4answers
2k views
How do I keep JTextFields in a Java Swing BoxLayout from expanding?
I have a JPanel that looks something like this:
JPanel panel = new JPanel();
panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
...
panel.add(jTextField1);
...
4
votes
3answers
106 views
Searching for a Java layoutmanager which hides elements if space is getting short
I'm searching for a Java layoutmanager which is able to automatically hide (less important) elements, defined by me, if the user scales down the window size.
For example an icon in a row of a label ...
4
votes
3answers
2k views
Get height of multi line text with fixed width to make dialog resize properly
I want to create a dialog that contains some kind of text element (JLabel/JTextArea etc) that is multi lined and wrap the words. I want the dialog to be of a fixed width but adapt the height depending ...
3
votes
3answers
72 views
Displaying a Button at particular co-ordinates
How to display Button or a JButton at a particular coordinates say (x,y) of a window ?
3
votes
3answers
30 views
How to reduce the space between the 3 swing checkboxes?
I want to reduce the size between the components with in the Formatting group (left side on the image). How to do this?
JPanel formattingGroup = createGroupWithName("Formatting");
...
3
votes
3answers
42 views
How to make all these swing controls to have the same width?
I'd like the Data, View and Formatting group to have the same width as Motion controls. I tried setMinimumSize(new Dimension(250,30)) but it has no effect.
class DeeLiteControlPanel extends JPanel
...
3
votes
2answers
50 views
position Components in Circle
I want to position 10 JPanels in a Circle. Every Panel has the same size and the length between two Panels should be the same. So the easiest way i thought is to grab a null-Layout and compute the ...
3
votes
2answers
72 views
How to disable automatic component alignment in Netbeans?
Is there any way or plug-in that disables Netbeans automatic component alignment? When I place a label, all my components got placed randomly on the panel, not how I set them up. Every time I add a ...
3
votes
2answers
53 views
Should I use a layout manager even if it seems unnecessary?
I have a JPanel, on it are added an image and label, in that order.
It is very unlikely that more will be added to the panel.
The default formatting looks fine when it's displayed, in spite of me ...
3
votes
3answers
53 views
Borderlayout gui adding to borders
I'm trying to add 3 panels to the border layout only North South and West
something like
[A]
___ ______________
| || P2 |
| ||______________|
|P1 | ______________
...
3
votes
4answers
148 views
How to set position of objects in JFrame?
I have Labels and JButtons i want to define the position in JFrame.
import java.awt.*;
import java.net.InetAddress;
import java.net.UnknownHostException;
import javax.swing.*;
public class GuiFrame ...
3
votes
3answers
76 views
Getting java to display more than 1 .add()
I've started learning basic Java and wanted to rewrite a Game Map Generator that I've once wrote in PHP. I've got part of it working fine (This is just the start), but whenever I want to display 2 ...
3
votes
2answers
120 views
Swing BoxLayout problem with JComboBox without using setXXXSize
here's an SSCCE:
import java.awt.Color;
import java.awt.Dimension;
import javax.swing.Box;
import javax.swing.BoxLayout;
import javax.swing.JButton;
import javax.swing.JComboBox;
import ...
3
votes
3answers
97 views
Make 2 JButtons Equal in size
I have two JButtons with texts "Ok" and "Cancel". I am using GridBagLayout to align them in a JDialog. I have set the anchor to GridBagConstraints.CENTER. Due to the difference in the number of ...
3
votes
4answers
143 views
java which layout manager suitable for this task?
I have a JPanel parent with 3 JPanel children inside. They all currently make use of GridLayout and together represent a UML class. Problem is that when I add a new attribute or method, all 3 JPanel ...
3
votes
3answers
130 views
BorderLayout not working
I cannot get BorderLayout to work.
I want the cancelbutton to be positioned at the bottom, but it doesn't work.
Code:
import java.awt.BorderLayout;
import java.awt.event.ActionEvent;
import ...
3
votes
2answers
86 views
more efficient layout than Box
I've got some very old code which uses a Box to list some information. I create it like so:
Box patterns = Box.createVerticalBox();
Very (very) often, new items are added and old items are removed ...
3
votes
4answers
206 views
How to fill a GridLayout top-to-bottom and then left-to-right?
The default behavior of a GridLayout is that the components are filled row by row, and from left to right. I wonder if I can use it so that the components are filled by columns (from left to right)? ...
3
votes
3answers
126 views
how to use setResizable method here
I am using netbeans as an IDE. how can i set setResizable(false) on JFrame.I dont see the object of JFrame in netbeans.
3
votes
4answers
357 views
Best Swing Layout for 2-dimensional grid of buttons?
I'm trying to create a JDialog like the Symbol dialog in Microsoft Word that you get by choosing Symbol... from the Insert menu. Basically, it's an n x m (n and m are not known until runtime) grid of ...
3
votes
5answers
857 views
Are there no built in C# GUI Layouts?
I'm used to the GUI frameworks in Java as well as the QT GUI framework, and I'm used to the various layout managers. It doesn't seem that C# has any layout managers built in, or am I missing ...
3
votes
5answers
1k views
GridBagLayout: equally distributed cells
Is it possible to completely emulate the behavior of a GridLayout with the GridBagLayout manager?
Basically, I have a 8x8 grid in which each cell should have the same width and height. The GridLayout ...
3
votes
1answer
110 views
Laying ot components in Java Swing
Oh hay there, didn't see you. I was wondering if there is a better, more efficient way of formatting the labels, panels, and buttons in java then what I have done below. Here is my code, I want to ...
3
votes
4answers
406 views
Building a Monopoly Board with GridBagLayout
I have been building a Java version of Monopoly in my spare time and am having some trouble understanding layouts etc for Swing.
Each one of my spaces on the board is a essentially a custom JButton ...
3
votes
1answer
237 views
How can I “pack()” a printable Java Swing component?
I have implemented a Java Swing component that implements Printable. If I add the component to a JFrame, and do this.pack(); on the JFrame, it prints perfect. But if I don't add the component to a ...
3
votes
3answers
3k views
How can I control the width of JTextFields in Java Swing?
I am trying to have several JTextFields on a single row, but I don't want them to have the same width. How can I control the width and make some of them wider than others? I want that they together ...
3
votes
3answers
4k views
How to locate JLabels to an absolute position on Java GUI
I have many JLabels (which includes ImageIcons) in a JPanel.
And this JPanel is only a panel on the GUI; there are lots of other panels.
I want to place labels to the exact pixel coordinates on ...
3
votes
6answers
356 views
Can a layout manager spawn several JPanels?
I have to build a rather large form with many controls. The controls are divided in basic controls/settings and extended controls/settings. The user can decide if he wants to see only the basic or ...
2
votes
4answers
52 views
Aligning JButton to the right
I am creating an interface in java and i want to align the button to the right. I have try but its not working. Can someone tell me how to do it?
import java.awt.Color;
import java.awt.GridLayout;
...
2
votes
1answer
42 views
setAlignmentY not centering JLabel in BorderLayout
new to java and brand new to the site. I have a JLabel added to the center panel of a BorderLayout. I would like the JLabel to be centered in the panel; setAlignmentX appears to work, but ...
2
votes
3answers
56 views
Java Layout Manager Advice
I've got the idea of how I want my graphics to look but I've been messing around with LayoutManagers for a while and can't seem to find a combination that works well.
Here's the setup:
1 JFrame ...