Flow layout places components left to right and then top to bottom, allocating just enough place for each component.

learn more… | top users | synonyms

0
votes
1answer
7 views

Can't Use LEFT_ALIGNMENT in FlowLayout Constructor

I am currently learning Java Swing for a project. I am using tutorials located here and have been working on writing the final program in the Layout Managers section, a window that incorporates all ...
1
vote
1answer
22 views

JTabbedPane FlowLayout throws ArrayIndexOutOfBoundsException

I'm trying to apply the flow layout to a JTabbedPane so that I can set the hgap(0) and vgap(0). The default layout for the JTabbedPane leaves gaps all around. The following code throws when I try to ...
0
votes
1answer
32 views

How to constrain uicollectionviewflowlayout to a specified frame

I'm fairly new to UICollectionView. Though I've watched the WWDC talks on it I'm still unclear how to achieve my layout. I'm trying to constrain my flow layout to a square bottom aligned to the ...
0
votes
2answers
77 views

Adding JPanel to JFrame with FlowLayout

I am trying to display a filled oval on the screen using a subclass of JPanel when I try to add an object of this subclass to a JFrame with FlowLayout the oval is not displayed correctly I don't know ...
0
votes
0answers
47 views

flow layout with pinch zoom

In my app i want implement following, 1)Grid like arrangement of Layouts(each layout contains a Button and Image View). 2)User can pinch zoom any Layout(zoom is between the standard set of values ...
1
vote
1answer
63 views

Scale components in FlowLayout as big as possible

How can I scale PictureBox components to best fit the given space on the screen while keeping their aspect ratio (interdependent of the actual image or its SizeMode) ? I tested setting the Dock of ...
1
vote
0answers
36 views

Simulation of cursor based UI using JLayeredPane

I'm trying to make a Kinect driven UI using JLayeredPane. UI consists of 4 JPanels. On the top of these 4 JPanels, I'd like to paint a cursor to show user's cursor. When using JLayeredPane, I'm not ...
1
vote
1answer
77 views

FlowLayout.CENTER not centering the components

I was using FlowLayout.CENTER to center a string and some checkboxes but it is not centering them. I've used this before and it worked fine. Here is the code: import javax.swing.*; import java.awt.*; ...
0
votes
1answer
51 views

Android-Flow Layout in JAVA

I m giving 3 sentences in 3 text views in JAVA file in horizontal orientation but only 2 text view that is only 2 sentences are comin but the third sentence gets disappeared due to the resolution of ...
0
votes
0answers
15 views

scrollpane with flowlayout ,child figures can not wrap

anyone can help me about this problem . i need a figure like this, this figure use flowlayout, when resize it, it can dynamic layout its children. and then ,if there are many child figures in it, ...
0
votes
1answer
54 views

Reduce gap between JPanels

I have a simple Class StatPanel that extends JPanel and has a few JTextFields, a JCheckBox, and a couple JLabels. The panel is going to be used as a series of panels used to display information and ...
3
votes
0answers
103 views

Why does indexPathForItemAtPoint always return nil

I have a UICollectionView contained in an UIViewController that uses a horizontal UICollectionViewFlowLayout. I'm also using a prototype cell created in my UIStoryboard. I want to create a custom ...
0
votes
3answers
50 views

Aligning components on two panels which are using flow layouts

I have two panels which are using flow layouts. These panels have same number of components (labels and text boxes). How do I align them?
0
votes
1answer
58 views

How do I get a FlowLayout inside a ScrolledComposite grow vertical and not horizontal

I'm trying to create a FlowLayout Composite inside a ScrolledComposite so that the FlowLayout Composite inherit it's width from the ScrolledComposite but grows in height dynamically, I've searched ...
1
vote
2answers
170 views

How to have FlowLayout reposition components upon resizing.

I want to put FlowLayout with lets say 5 labels inside BorderLayout as north panel (BorderLayout.NORTH), and when I resize my window/frame I want the labels to not disappear but instead move to new ...
3
votes
1answer
113 views

GUI programming, FlowLayout blocking other things on JFrame(?)

The idea of the program is that I have some buttons and an icon SOMEWHERE on the frame. I want the buttons to change the color. I'm only worried about making all the elements show up right now. If I ...
1
vote
2answers
127 views

How do I set the location of Radio Buttons?

I want to create two radio buttons for the "Gender" label. Here is what I got: maleRB = new JRadioButton("Male", true); femaleRB = new JRadioButton("Female", false); radioGroup = new ButtonGroup(); ...
0
votes
1answer
536 views

iOS 6 CollectionView Dynamically change Layout

I'm kinda newbie in UICollectionView and I'm working in a project that dynamically changes the UICollectionViewLayout in a given action. My CollectionView has 6 sections, each of them with 10 ...
2
votes
1answer
145 views

how to minimize a panel inside a container

I have three buttons close,min and max. When i want to max it then it will take the shape of the main container and overlaps all the panel and when i close it then only that panel gets affected. But ...
0
votes
1answer
66 views

Can I resize only the height of my frame using pack()?

I am writing a program that brings up a JDialog box that lists multiple options from a config file. The number of options can vary each time it is opened, so I need to be able to dynamically adjust ...
0
votes
2answers
200 views

how to keep radio-button or checkbox and its label together when content wraps in flow layout

How to keep the radio button ( ) or checkbox [ ] and its label together when text wraps as the browser window is made narrower, so that we don't end up with this: [ ] pepperoni [ ] ...
4
votes
2answers
169 views

QScrollArea widget is not expanding with a Flowlayout

I have a ui with a QScrollArea Widget. The QScrollArea uses a Flowlayout. My problem is when I add widgets to my layout the scroll area begins to scroll and does not expand when it has room to expand. ...
1
vote
1answer
394 views

UICollectionView header position in horizontal scroll direction mode with flow layout

I have ios UICollectionView with Flow layout with horizontal scroll direction. In this situation typical header position is on the left side of cells. I want to make header on the top of section ...
0
votes
1answer
199 views

Using Java FlowLayout

This is my first time here, I'm not yet familiar with the site but I heard it was great. I'm currently trying to learn Java. I'm having problems with layouts. The one I'm specifically looking at right ...
0
votes
0answers
155 views

Modified FlowLayout in JScrollPane -> Similar to WrapLayout

I´m new to this forum. I´ve often found great answers here, so I hope you can help me: I´m in need of a modified FlowLayout, that will wrap all the added components inside a JScrollpane. After ...
2
votes
2answers
80 views

How to remove excess space at bottom

I'm creating a simple Java Swing application. The build set up is a Grid Layout of 3 rows and 1 column. Inside the top row is another Grid Layout that has two columns, and inside each of those columns ...
0
votes
0answers
427 views

UICollectionView horizontal continues scrolling

I've using UICollectionView to display some pictures. When there are more than three pictures, one have to scroll horizontal to see more pictures. My questions is if it's possible to make the ...
1
vote
3answers
780 views

Can I have a UICollectionViewFlowLayout with scrollDirection different from layout direction?

The UICollectionViewFlowLayout is great, however, I want it tweaked slightly so that the scrollDirection is different from the layout direction. Examples of what I'd like is the springboard home ...
0
votes
1answer
202 views

Fill up the empty space of a FlowLayout on Android

I'm creating an app which has a flow layout. The FlowLayout implementation I found from the web (I don't remember exactly from where). Now, when my layout width greater than sum of the widths of its ...
0
votes
1answer
85 views

Swing flow layout properties [closed]

I've been playing around with the card layout demo: ...
2
votes
2answers
271 views

Java Swing - JTable not showing

I'm having some troubles with Java Swing. I'm trying to make a frame with a control panel at the top with some buttons in it. and below that i want a JTable to show I've been trying but the table is ...
1
vote
2answers
403 views

Initialize multiple JPanels using a Flow Layout (Homework)

I am trying to create a JFrame with two JPanels inserted inside using FlowLayout. I have the frame being initialized in a separate file, but here is what I have being called public class FlowInFlow ...
2
votes
1answer
72 views

How do I create a Tiling layout / Flow layout in TkInter?

I want to to fill my window with, say, labels and I want them to wrap once the column would be bigger than the current window (or rather parent frame) size. I've tried using the grid layout, but then ...
1
vote
4answers
478 views

Java Swing components not showing

Help me! Whenever I try to start up the code below, it shows only the button on the bottom and the password field everywhere else. I want to be able to see everything, but I can't public void ...
2
votes
1answer
678 views

How to set UICollectionViewDelegateFlowLayout?

A UIViewController maintains a reference to a UICollectionView. The controller should modify the built-in flow layout using the UICollectionViewDelegateFlowLayout. It's pretty easy to set the view's ...
0
votes
1answer
323 views

WPF Flow Layout

I have a ListBox with a horizontal WrapPanel inside to create a grid of content. It produces the correct layout but it's really slow with greater than a hundred or so items. I see a few half-baked ...
1
vote
3answers
330 views

Java Swing GUI: Moving around components specifically with layouts

I'm making a little test GUI for something I'm making. However, problems occur with the positioning of the panels. public winInit() { super("Chatterbox - Login"); try { ...
2
votes
0answers
209 views

How to make BoxLayout behave as vertical FlowLayout?

FlowLayout performs "pressure" from the right, so as all components are trying to take their minimal widths. Contrary, BoxLayout tries to spread all components to fill entire height of the space. Can ...
2
votes
1answer
699 views

Swing layout with miglayout and nested panels

I have a Swing program using SwingLayout. The structure of the Swing components looks like this. JFrame JPanel (Cardlayout) JPanel (Miglayout) - Main panel Jpanel (Flowlayout) ...
0
votes
0answers
33 views

Open all images in window picture & fax Viewer which is in flowlayout panel using vb.net

I created a flowlayout panel and then load pictures from different folders into flowlayout panel . Now , I just want to create a button which open all images in window picture & fax Viewer ...
0
votes
1answer
336 views

Why aren't my components wrapping in Swing's FlowLayout?

Why aren't my components wrapping in this JPanel using FlowLayout? They simply run off screen and are only partially visible. JPanel panel = new JPanel(new FlowLayout()); panel.add(new ...
2
votes
2answers
67 views

Need to resize the window for program to work

Here is the code of my Layout class. import java.awt.event.*; import java.awt.*; import javax.swing.*; public class Layout extends JFrame { private JButton lb; private JButton cb; ...
1
vote
1answer
323 views

Center component with FlowLayout or BorderLayout (and remain centered after resizing)

I have a BoxLayout panel that has some components from top to bottom and I want this to be centered (both vertically and horizontally) in the content pane, so that when I maximize the window this ...
2
votes
1answer
1k views

Set size of JLabel in FlowLayout

I have a JPanel that uses FlowLayout. I add a number of JLabels to the JPanel, use setPreferedSize() to adjust their size and save them in a list, label_list. Everything works fine. Then I want to ...
3
votes
2answers
137 views

all individual panels are not shown inside root panel

I want to add multiple jpanels to jpanel.So i added a root panel to jscrollpane.and then added all individual jpanels to this root panel.I made jscrollpane's scrolling policy as needed.i.e ...
0
votes
1answer
306 views

Filter Controls in FlowLayoutPanel?

I have a FlowLayoutPanel that I fill with a custom UserControl, and I have a TextBox at the top of the form that I would like to use to filter the results. Each UserControl stores it's properties, but ...
0
votes
1answer
105 views

cant add second JLabel to second JPanel in single JWindow

I'm trying to add 2 seperate JLabels to 2 seperate JPanels, all within one JWindow! The first label displays fine in the first JPanel. However the second JLabel doesnt show, although the second JPanel ...
3
votes
1answer
339 views

Positioning a JLabel (setAlignment not working)

I want to position my image which I have placed inside a JLabel. Here is my code: public Main() { setLayout (new FlowLayout()); image = new ...
1
vote
3answers
2k views

JTextField displayed as slit when using FlowLayout…please explain

Can someone please explain to me, why every time I use the FlowLayout Layout manager my textfields are displayed as slits. I have bumped my head against this problem for some time now, and I can't ...
0
votes
1answer
275 views

Working with Java layout managers

I have created a JPanel which contains an arbitrary number of JLabels, laid out with a left-aligned flow layout manager. Lets call this a FlowPanel. Each FlowPanel has a depth, and I would like to ...

1 2