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 ...
0
votes
3answers
42 views
Put a JButton in the center of the screen with BorderLayout
How to add a JButton into the center of a JFrame with BorderLayout()? I tried using BorderLayout.CENTER, but instead of the center of the screen, it gave the top-center of the screen. Or do I have to ...
2
votes
2answers
32 views
Resizing panels in a GridLayout
I want this:
My frame is a GridLayout (3,2), and all I can have is this:
I put the button in a panel, I think it's easier. But how can I change the size of the grid?
2
votes
4answers
52 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:
---------------
' '
' --------- '
' | | '
' --------- '
' ...
1
vote
0answers
49 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 ...
1
vote
3answers
43 views
How set location of an image in a JFrame
I'm trying to set the the location of an image in a JFrame. I thought label.setLocation(100, 100); would set the location of the image to 100, 100 (top left corner), but it doesn't seem to do ...
1
vote
2answers
48 views
JTable does not fill JScrollPane which is added to JPanel using GridBagLayout
I have a JPanel with GridBagLayout. The panel contains 2 rows, first row has a JLabel and second row has a JScrollPane with JTable inside. The table does not fill 100% of the scrollpane. Even I resize ...
0
votes
1answer
33 views
Adjusting GUI JPanels to fit
So for this program, I am trying to have a JToolBar on the left, and this spectrum panel on the right side. I am currently adding using a BorderLayout, but as you can see, the spectrum (in cyan) I add ...
0
votes
2answers
18 views
BorderLayout West Center East all Equal width
I am adding objects dynamically to panels then adding to the my border layout. I need the West, Center and East all to be equal size. This is what I have so far:
static int width = 300;//Screen width
...
0
votes
2answers
56 views
JPanel - positioning element
I have a problem with setting position for one of the elements (the image). I cannot align it to right-bottom of the screen. I tried to use different layouts but I can't make it to work exactly like I ...
2
votes
3answers
57 views
Alternative to absolute layout?
Is there a layout manager that gives the same degree of control as Absolute Positioning?
But also makes auto resizing possible? Something where you could place elements using relative coordinates?
0
votes
0answers
26 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 ...
0
votes
2answers
31 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
2answers
35 views
Problems with GridBagLayout
I cant transfer any of the relatet posts to my simple problem.
In order to get into GridBagLayout i wrote a simple example:
JFrame frame = new JFrame();
JPanel main =new JPanel();
...
-1
votes
1answer
47 views
JPanel Not Stretching To Fill Screen [closed]
So I am trying to make a panel that stretches across my entire programs with, and has about 20 pixels worth of height. For some reason there is only a small box that is the panel. Can anybody tell me ...
0
votes
0answers
36 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 ...
0
votes
2answers
40 views
Java layout center with two panels
In Java, when using the BorderLayout, is it possible to have two panels in the CENTER, but both be visible on the form.
Here is my code:
guiFrame.add(guiFieldsPanel, BorderLayout.CENTER);
...
0
votes
1answer
65 views
Java GridBagLayout and JPanel Error: cannot add to layout: constraint must be a string (or null) [duplicate]
I have researched this error and I cannot seem to find a solution. I am trying to create a grid of 800 JButtons with 40 columns and 20 rows. This will eventually be used to control a domino setting up ...
-2
votes
0answers
36 views
changing the position of a label [duplicate]
I have this code in java, it is in an event of a button. It tryes to change the position of
a label but it does not work, it simply does not change the position.
label1.setLocation(222, 22);
...
0
votes
2answers
38 views
Having trouble adding graphics to JPanel
I have looked online, but I am still having trouble understanding how to add graphics to a JPanel
Here is the code for my panel class:
public class GamePanel extends JPanel {
public ...
-1
votes
1answer
26 views
Positioning a Slider in a JPanel using Java
Ok, like with everything I find it easier to learn when jumping into the deep end (Java, PHP, Air Traffic Controlling) I just try not to kill anybody in the process; however, I cannot find any ...
-2
votes
1answer
115 views
GUI for a simple banking project [closed]
I am new to java. I started a few weeks now teaching myself using online free tutorials.
I thought of a simple idea to create a little project for bank account transaction log, sort of.
As we keep ...
0
votes
1answer
31 views
Having difficulty images/panels/buttons from the menu to the JPanel
I want to be able to dynamically add new 60x80 images that will act as buttons to open new frames. However, for some odd reason my createFrame() method fails to add any type of component into the ...
-3
votes
0answers
50 views
JScrollPane does not scroll to show all the components present in JPanel [closed]
emailClintt.getMailcaryingPanel().setBounds(110,110,340,570);
emailClintt.getMailcaryingPanel().setPreferredSize(new Dimension( 340,570));
final JScrollPane scrollp = new ...
-2
votes
1answer
38 views
Add a JList/JScrollPane to a JPanel [closed]
How to add a JList/JScrollPane to a JPanel?
I'm having a bit of trouble figuring this out, I've created a JPanel, and what I want to do is add a list with scroll pane so that I'm able to add/remove ...
1
vote
1answer
45 views
Using 2 panel in the same frame
I want to use 2 panel in the same frame. But button is not working? How do i do that? I want to put couple of buttons in one panel and other panel will do some other stuff.
public class TestingPage ...
-3
votes
0answers
62 views
Moving pieces game on a chessboard [closed]
Im trying to move a piece from my chessboard. (example the Pawn)
I created a boolean class named canMove(int toX, int toY) taking the location where the piece must go on. A boolean should normally be ...
0
votes
1answer
25 views
Spaces between the elements MigLayout
Maybe some of you will be able to help me, because I'm sitting on this for a few hours and I do not know what to do. I checked the documentation several times, but with out any effect
I need to ...
0
votes
1answer
30 views
Converting multiple JFrames into one single JApplet
As the title suggests, I have to find a way to convert multiple JFrames that are connected to each other (they are all in the same package by the way) into a single JApplet. I know that I should have ...
0
votes
1answer
36 views
how to use setLocation to move componets
I'm trying to set the components of this application to a set location using setLocation so far i haven't been able to move the components. There is more code but its get calling and setting this code ...
0
votes
2answers
52 views
How to assign the location of button?
How can we create a button on the frame that is in North and in center horizontally? (i.e not occupy all the width)?
2
votes
1answer
62 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
2answers
82 views
Positioning of Swing Components Java - JPanel, JButton, JFrame
I'm currently studying Java GUI implementations and for my next assignment we are to create a program to simulate the control of a house. We have been given pretty much free reign to build it however ...
0
votes
2answers
32 views
multiple JComboBox in one JPanel
I have a JPanel with three JComboBox. Here is the code I wrote:
public class Main {
private static String pat_order;
private static String PS_selection;
private static String ovlp_selection;
...
1
vote
2answers
50 views
Java Layout Formatting (GridBagLayout)
Trying to learn how to do some elegant and more advanced JFrame layouts. I'm trying to make something I thought would be rather simple, but I'm having some difficulty with it. As opposed to messing ...
0
votes
0answers
35 views
JPanel not displaying image serial port
I have an images to display in a JPanel, the image is correct, it exists and Java reads it. I have a main class that has two apps. I choose this classes pressing a physical button and sending the name ...
0
votes
1answer
52 views
settings bounds to JTextField
I have a JTextField that a User and an Admin update to try and solve a problem that a user may have. Although when I setText(conversation) to the JTextField the text starts in the middle and when it ...
0
votes
2answers
52 views
Moving Component in GridLayout
I have a 30x30 GridLayout of JPanels. So each Cell in the 30x30 Frame is a JPanel with an Image. Aka Tiles on a map.
I need to move my character (red JPanel) around this map on keyPress.
How can I ...
-7
votes
1answer
87 views
How to create a user interface using Swing in Java? [closed]
I want to create a user interface (image below) in Java. I have used a grid layout, but how do I divide equally?
-1
votes
1answer
45 views
Java Swing - set panel
I'm quite new to Swing, and I'm programming an application with NetBeans' UI designer.
Now I have an JPanel called "editorPanel", and it must be able to display multiple things. (so, sometimes it has ...
0
votes
1answer
27 views
Cant get JLabels allign properly
I have a list of categories and each category has an image, I need to display those images one after the other (4 at a row) with some spaces between them. I have problem displaying the last label, it ...
0
votes
1answer
29 views
Java GroupLayout Exception
public class Grouplayout implements Runnable {
public static void main(String[] args) {
SwingUtilities.invokeLater(new Grouplayout());
}
@Override
public void run() {
JFrame jFrame = new ...
1
vote
0answers
40 views
best approach for switching out JPanels
I am trying to create a very simple Java GUI but I have run into an issue. I have 2 panels: 1 which adds data and the other that views it. I was using card layout but realized it does not update the ...
1
vote
2answers
46 views
How to align two JButtons to be right aligned?
So currently my program shows only one of the buttons in the bottom right hand of the GUI. But I want to show both buttons in the bottom right hand corner. Any ideas how to set both buttons to the ...
0
votes
1answer
48 views
GridBagLayout constraints not working?
Here is my code that uses GridbagLayout
public IntroPanel(){
JPanel intro = new JPanel(new GridBagLayout());
JLabel label1 = new JLabel("Test test test");
label1.setFont(new ...
0
votes
2answers
44 views
JPanel within JPanel
Is it possible to have a panel within a panel in one method in Java?
Like If I created a JPanel within a method called, CreatePanel, could I add another one below it? I'm trying to add two or ...
1
vote
1answer
33 views
Glue Equivalent in MigLayout
I am using MigLayout and I would like to create an effect like using BoxLayout's "glue" to create an invisible space that will flexibly fill the area between two components. From the tutorial:
I ...
1
vote
1answer
30 views
Prevent JLabels from Growing in MigLayout
I am trying to create a form in MigLayout. I want for any text fields to be labeled with a small JLabel preceding it, with the text field growing as space is available. I am successfully able to do ...
0
votes
2answers
47 views
CardLayout panel display error in existing frame
I have designed a frame containing a few controls using the design view in Netbeans 6.9.1. Further, I have added an empty panel in which I am trying to toggle display of a couple of swing components ...
-1
votes
1answer
25 views
Either Editing BorderLayout or Making a Custom LayoutManager
Okay, so another question for the day.
I want to have a BorderLayout, where I have the logo at the top, and not three, but four columns in center. Is there a way for me to edit the BorderLayout ...
-3
votes
2answers
42 views
How do I get these two buttons on the bottom of my program
Write a program that displays two buttons labeled “Green” and “Orange”.
If the user clicks on the green button, the background of the window changes to green. If the user clicks on the orange ...





