Tagged Questions
0
votes
1answer
25 views
Java - Which Layout Manager should I use for my program?
Originally I wanted to use Border Layout but you can only use up to 9 boxes from my understanding. Is this true or not?
Also is there something more easier than GridBagLayout yet more flexible than ...
-2
votes
0answers
24 views
Swing absolute layout appearing very small
i have a problem once i run my java GUI code, where it starts in a really small windows and i have to drag it by the mouse to maximize it.
it happened since i used the absolute layout instead of ...
0
votes
0answers
27 views
Java MigLayout: Buttons to dynamically add JTextFields are moved to the right
I've got a problem with MigLayout and I've posted the Code. The problem is: when I push the button of a specific row, a new TextField is added but then the buttons of every row will move to the right.
...
0
votes
1answer
41 views
How to place a text area in JPanel [duplicate]
I have created a JFrame containing 2 JPanels(panel1,panel2). I have added panel2 in panel1. panel1.add(panel2);
I have added a text area into panel2.
panel2.add(textarea);
finally panel1 to ...
2
votes
4answers
55 views
which LayOut Manager is most suitable for my GUI?
I am struggling with the Layout Manager choice. I have to set a GUI which is basically like a stack, for instance:
---------------
' '
' --------- '
' | | '
' --------- '
' ...
0
votes
2answers
44 views
Swing: Place jTables and jButtons
I have a jFrame with 2 jTables (inserted in 2 jScrollPanes). Then, I have 3 jButtons for each jTable. How can I place them to have the following result:
I don't know very well what Layout to use to ...
1
vote
1answer
64 views
Cleaning up a Nested J panel
Rebuilt the SCCE for you guys.
My goal is this
The general idea is that clicking on the title bars of the menus (right side) will collapsible (set visible to false) the content panes associated ...
0
votes
3answers
35 views
Align components on the page top right with GridBagLayout Manager
i am trying to make a login page just like facebook, but the code i have written is not showing it on the top left side instead it is showing at the centre of page, i am using GridBagLayout and ...
0
votes
1answer
29 views
Organizing JPanels and Layouts
So I have the following screen:
And this is my code:
setLayout(new BorderLayout());
JLabel lblTitulo = new JLabel("Sistema Generador de Examenes");
lblTitulo.setFont(new Font("Tahoma", ...
-2
votes
5answers
48 views
Java Simple Layout [closed]
What is the best library to use in Java for a simple layout.
Here is an image of what I am wanting to have on the form.
I am looking for the most simplest layout library, that also has good ...
0
votes
1answer
22 views
GridBagLayout in eclipse view
Dear StackOverflow readers!
I want to create eclipse plugin with new view. But when I try to set layout of parent composite which, is passed to createPartControl(Composite parent) I get "The method ...
0
votes
0answers
28 views
Align JPanel to right while still making the JPanel expandable using MigLayout
How to align JPanel to the right while at the same time making the JPanel expandable (shrink and expand) using MigLayout?
I am trying to display a inner JPanel within another outer JPanel and want to ...
1
vote
2answers
66 views
JPanel appearing to be two times bigger than set resolution
I must say I tried everything and I can't understand what's wrong with my code.
In my SIView class I create MainFrame which extends JFrame with specified resolution (let's say X,Y).
Then I create ...
0
votes
2answers
32 views
How to make the component to respect column and row Weights?
public class Tester {
public static class Frame extends JFrame {
public Frame() {
// Layout
GridBagLayout layout=new GridBagLayout();
...
0
votes
0answers
37 views
Create FormLayout rows and columns dynamically (at runtime)
Hello guys and ladies,
as I let the Eclipse WindowBuilder create me a JPanel with a FormLayout, I wanted to make this creation to be dynamical, because the program I'm writing needs it that way in ...
-3
votes
1answer
54 views
Showing picture in a panel [closed]
I want to show some images in a panel. To see all pictures - I have to scroll down. Every image has name bellow the picture. Now what classes and methods should I use?
2
votes
2answers
53 views
GridBagLayout is not displaying as expected
This is my first foray into GridBagLayout, have reviewed the Java documentation online (as well as a lot of SO Q&As) and I've creating a panel that I'm expecting to display as such:
...
2
votes
1answer
63 views
Working with nested Panels
Trying to build out a GUI for my game but no matter what layout I work with I can't get the nest of panels to do what I like
My goal is this
...
0
votes
0answers
15 views
I need some help choosing the most appropriate layout for a Java dialog box [closed]
I'm relatively new to working with Java's Swing components, and I've got a layout issue I'm trying to solve simply.
In a nutshell, I'm creating a panel that has four lines:
a title
a row of three ...
0
votes
1answer
84 views
GridLayout with component fixed Width and Height?
I have main Panel and I'm adding components dynamically into that one.
Main Panel has GridLayout limited to 3 columns and 0 rows (0 rows will allow rows to grow infinitely), but the problem is that I ...
0
votes
2answers
44 views
Add buttons in Border Layout
I would like to add buttons in Border Layout one after another . But I do not know how .
Thats a part of my code :
setLayout(new BorderLayout());
JPanel jp = new JPanel();
...
0
votes
2answers
29 views
Why can't I view my JLabel added to JPanel while using graphics?
I am trying to add a JLabel under the boards that is painted with graphics. I set the x and y position of JLabel somewhere under the board
pName = new JLabel("Yoooooo");
...
1
vote
1answer
27 views
MigLayout form type structure issue
I'm trying to make a neat centred for structure but the labels and fields o not have an equal space between them, I'm thinking I may have to use two columns instead of merging them.
This is what I ...
1
vote
1answer
48 views
Java, Put a panel on the background image of frame
I am trying to write a retro snake game. I set a background image of an old Nokia, and I want to play the snake from its screen. However, I cannot put my gamepanel on my background image.
Can I do ...
0
votes
3answers
61 views
swing component not visible
Ive been trying for 2 days to make an app and I'm stuck in the incipient phase, i.e. the UI. Swing is so difficult that I can't even display the components. Can anyone help me, please?
I have a ...
2
votes
1answer
154 views
Working with multiple panels in one frame
I have a problem where i want a program to switch between multiple panels in a same frame. The problems I am encountering are that i can't set the layout when the panels switch and after the switch ...
1
vote
1answer
52 views
Drawing to a nested panel using BorderLayout
im new to Java so therefore I am trying out some things.
I am playing around with Java layouts, specfically Nested Panels using BorderLayout.
The Problem that I have is that i am unable to draw to ...
2
votes
5answers
145 views
Java GUI Layouts
Could somebody tell me which java layout I need to use to achieve the layout below:
I am currently playing out with the FlowLayout however I canât get the entry fields to line up beside the output ...
3
votes
1answer
38 views
BorderLayout.NORTH behaving unexpecedly
I have a JFrame-descendant window a with a JMenuBar and two components stored in a JPanel. One is a JTabbedPane, which occupies the majority of the screen, and the other is small JPanel that in turn ...
0
votes
1answer
54 views
java boxlayout space after adding jpanel
I have container jpanel in which i used a boxlayout manager and what i do is i add another panels inside in which the added panel contains a label and textfield using flowlayout manager. everytime i ...
2
votes
1answer
49 views
How to force JContainer to re-layout itself?
I have JFrame with BorderLayout: JTextArea in the NORTH and JButton in the SOUTH. I pack() it in the beginning.
My code changes font size for the text area. How do I force the dialog window and its ...
1
vote
3answers
66 views
Grouplayout is a bit messed up
There is some problem in Grouplayout of following code, Kindly help me to figure it out
I also have uploaded the output file, I am not sure if their is any problem with alignment. Kingly have a look ...
0
votes
1answer
57 views
JButton inside JTable inside JTable inside JTabbedPane
So the code behind it is quite massive.
I have JTabbedPane with a Tab for each table(inside JSCrollPane ) and a Summary table which contains tables that uses the same models as models in the tabs. So ...
0
votes
0answers
30 views
Swap components in a Panel
I have a small program to make that looks like this.
a | b | c
d | e | f
g | X | h
where a, b, c, d, e, f, g, X, and h are JButtons.
Everytime you press a button that is above, below, or next ...
1
vote
2answers
53 views
JScrollPane and sizing issues
I am having quite a problem in regards to a proper way to handle 'packing' a JPanel and allowing a scroll bar.
Code:
public ProjectSelector() {
super(new BorderLayout());
final String ...
2
votes
1answer
45 views
Update new position for Jlabel
I'm new to Java and I am having some trouble with my assignment.
I have a Panel containing 100 JLabels:
for(int i=0;i<100;i++)
{
num[i] = new JLabel(""+i, JLabel.CENTER);
...
0
votes
1answer
75 views
Fit all components from JFrame to actual size of window
I'm using NetBeans. How I can make all components from my window to resize to actual size of the window? Now when my window is 800x600 and I make it larger, size of all components are the same. I ...
0
votes
1answer
83 views
Dynamically create list of jpanels swing/java
I am attempting to create panel, PluginListPanel (extending JPanel), which will show a list of plugin panels which will respect the preferred height of the plugin's panel, but will force the width. I ...
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.*;
...
1
vote
2answers
70 views
JTabbedPane doesn't work correctly
public void tabbedPane(){
JPanel tab1 = new JPanel();
JButton btn = new JButton("Buton - 1");
btn.setPreferredSize(new Dimension(50, 20));
...
0
votes
3answers
131 views
How to put two java swing JPanels next to each other and have a table in it?
I am trying to build my own "Battleship" game and have problems with swing.
I now read endless docs on oracle tutorials on LayoutManagers, but not any of them works as I understand them. They only add ...
0
votes
1answer
41 views
How to add many components to a JFrame in a format
I have a JPanel, 4 ComboBoxes, and a button. I want to have a 700 x 500 JFrame, with the panel taking up the left 500 x 500. The right side I want, vertically, 2 combo boxes, another 2 combo boxes, ...
0
votes
1answer
67 views
Adding elements (i.e. JLabels) outside of the set layout
As part of a project we've got to have 9 boxes, here I've just implemented alternating colors as an example in place of the images we should be using. But whilst I want these 9 JLabels in this grid ...
1
vote
2answers
50 views
JButton table java
I am working with Swing and I created a JFrame in which I put 9 buttons.
But I need to access quickly to these buttons, so I would like to create a table of all my JButtons, where I'll be able to ...
0
votes
1answer
87 views
Adding JButton dynamically to the JPanel not working with Netbeans
I created a JFrame Class with Netbeans 7.3 and added two panels from the palette.
I have added a button in the first panel on the click of which I want to add a new button in the second ...
1
vote
8answers
88 views
How to divide a JPanel into left and right segments?
I want to divide a JPanel into left and right segments. How do I do that ? After that, I will place panels in the left and right half.
0
votes
1answer
44 views
Which layout to use to ensure fixed proportion of component size?
I want a swing layout where components can be placed ANYWHERE (and not fixed locations) one likes and the location of components does not change and their sizes (relative to each) other remains in a ...
-1
votes
2answers
57 views
Jpanels don't show up as defined size
Hello while trying to build my Java GUI I keep running across the problem that my JPanels keep resizing or they just show up as small collapsed squares. I defined the size of each JPanel using the ...
0
votes
1answer
76 views
Updating Layout of Panel after changing label icon
I have created a project that will download the thumbnails of the images from a ftp server and display it in a panel using JLabel.
The images are being displayed but the layout of the panel only ...
0
votes
2answers
172 views
How to layout multiple panels on a jFrame? (java)
I am in the process of making my own java socket game. My game is painting alright to the full screen (where it says "paint graphics here", but im painting to the whole jframe at the moment). I want ...


