0
votes
3answers
18 views

Align components on the page top left 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 ...
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 ...
-3
votes
1answer
53 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
1answer
57 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
40 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
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 ...
0
votes
1answer
48 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 ...
1
vote
2answers
52 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 ...
0
votes
3answers
122 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
66 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 ...
0
votes
1answer
84 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
84 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.
-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
73 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
151 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 ...
0
votes
1answer
50 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 ...
0
votes
1answer
76 views

JButton not appearing on JPanel despite using correct layout managers, etc

I have been working with Swing for a while now on my CS project and, this may sound redundant, but I am unable to pop in my JButton in my JPanel. There are two other buttons which follow the same code ...
3
votes
1answer
89 views

Java Swing - Difficulty achieving desired layout

I'm writing a GUI in Java using Swing. At the moment, I'm trying to create a "Module" (a yellow block) that has a widget holder (black bar) on the left and right edges. Each holder will hold several ...
0
votes
3answers
53 views

How to stop resizing of JPanel in JFrame

I have reminder class extending JPanel, with boxlayout and setPreferredSize(new Dimension(500,500)) In the mainclass I have JFrame rem = new Reminder(); frame.setSize(900,900); ...
1
vote
1answer
119 views

Java, When using GridBagLayout to layout panels, adding buttons to the panels changes the sizes, how do I prevent this?

Ok so I am messing around with GridBagLayout to get to grips with it. I want to use it to layout JPanels in a JFrame but these individual panels will use different layout managers, GridBagLayout ...
0
votes
3answers
140 views

Putting button on top of image in JPanel?

I have been working on a main menu screen. I use a card layout because I have a splash screen that shows up before the main menu screen. Once the user clicks the "Continue" button on the splash ...
1
vote
1answer
38 views

How to position two JPanels diagnol from each other in Java?

I was wondering what layout or hack could be used to position these two JPanels so that it would end up looking like this? It seems like most layouts depend on the position of other components and ...
1
vote
2answers
131 views

Adding a table to java swing

I already have a panel to which I have added buttons and a text area. Now I need to display a table below it . The panel's layout is AbsoluteLayout and if I use the following method to inflate the ...
1
vote
2answers
136 views

How can add JTable in JSplitPane?

Hii i am doing a project in swing . i want to display my data in JTable from database.I created JSplitpane. In panel 1 created search button,jLabel and JTextBox for sect data from ...
1
vote
4answers
202 views

How to replace JPanel with another JPanel

I want to replace a Jpanel with another one in a JFrame I already search and try my code but nothing's happen this is my code : public class Frame extends JFrame { private Container contain; ...
1
vote
1answer
76 views

What is a good layout to render this design in Java?

I'm new to Java. I'm making a multiplayer Tic-Tac-Toe game as a test. For the main menu, I'd love a layout that looked like this: The problem is, I have no idea how to make that. I have a JFrame ...
0
votes
1answer
26 views

MiG Layout gaps and spacing [closed]

I have created this using MigLayout: What you see is a JPanel (Magenta). On it is a JPanel ("page") (Gray), centered and set to snap to the top of the JPanel. Gray JPanel has three other JPanels, ...
0
votes
1answer
67 views

add elements to a panel on the runtime in java [duplicate]

Possible Duplicate: How to dynamically add JLabels to JPanel? I have a created a panel and using a gridlayout for it. public pnlFriends() { initComponents(); this.setLayout(new ...
2
votes
4answers
124 views

How to place two ovals in a JFrame which both take up the full screen

I need to place two ovals in a JFrame. Every oval is in a different inner class. The thing is that with BorderLayout, when using CENTER, it allows you to span all over the frame. However I cannot add ...
0
votes
1answer
105 views

can I put 2 JPanels inside a JFrame like this?

would this put the two JPanels inside the JFrame or would I need to make a container of some sort? I am just trying to get the JTextField to take up only 1 column above the buttons instead of being ...
1
vote
3answers
113 views

JPanels in Jframe not shown

I am making a simple layout for a calculator, actually i am new to java and learning the basics. My problem is that when i run this code, only a JFrame opens and the other panels n its buttons are not ...
1
vote
2answers
227 views

How to center JPanel with dynamic size

I need to display chessboard. I have a BoardPanel class which extends JPanel and a GamePanel (also extending JPanel) class containing BoardPanel. GamePanel fills all the application frame. I want ...
0
votes
2answers
226 views

add controls vertically instead of horizontally using flow layout

I am adding checkboxes on JPanel in flowLayout the checkboxes are being added horizontally i want to add checkboxes vertically on JPanel using what is the possible solution for it please ...
1
vote
2answers
450 views

How can I split a panel into subpanels?

I already have a panel made (its a row of buttons), and have it located at the bottom of a frame (SOUTH), but I would like to add two rows (panels/ subpanels) beneath it (a text input line and output ...
1
vote
1answer
128 views

Centering JButtons on JPanel

I'm working on a GUI, and I'm trying to format to look more appealing for the user, however; I've run into a few roadblocks, one being I can't figure out how I would properly center JButtons in an ...
1
vote
3answers
231 views

JFrames and JPanels

Hmm, I appear to be running into an odd problem here, that I believe I once solved, but for the life of me cannot remember. I have a JFrame, with a JPanel in it, and I attempt to add another JPanel to ...
3
votes
3answers
90 views

Several similar panels GUI Java

I'm creating GUI and I don't know how to resolve my problem. What I'd like to do is to create several panels from PanelClass like i did in Main. I don't know how: Name buttons in my Panels and ...
2
votes
2answers
418 views

How to add a class that extends JPanel to JFrame?

For my assignment, I am given this piece of code: // This class/method uses a global variable that MUST be set before calling/using // note: You can not call the paint routine directly, it is called ...
1
vote
0answers
133 views

How can I call cardlayout.show from another class?

I'm trying to call the method cardlayout.show to class below. protected void makelabeltxt(final String text, GridBagLayout gridbag, GridBagConstraints c, int width, int height, final String panel) { ...
2
votes
2answers
175 views

Toggling/navigating jpanels in java swings

> I have a jframe defined in a package 'abc'. this jframe acts as a main class too. > the same package 'abc' also contain 4 jpanels(panel1,panel2,panel3,panel4) defined in different java classes. ...
0
votes
2answers
749 views

Java JFrame Layouts

I am making a simple maze program where the user can create walls, paths, the start and the finish, click solve and the maze will be solved. To do this I have a java JFrame with the size 640x480. On ...
1
vote
1answer
48 views

Java JFrame_JPanel

I am having a problem using JFrame and JPanel. My entire code is given below: class GUIExample { public static void main(String args[]) { //Creating the frame JFrame ...
2
votes
1answer
72 views

add the gui components dynamically?

I'm working on a program and I want to create an app in which I can repeat the gui components using the for loop. I've done this using card layout and it works fine but when I use container and JPanel ...
1
vote
1answer
93 views

Java Swing stack components vertically without spreading out

I've been trying for ages to get a list of JPanels to stack vertically without spreading out to all available vertical space. The container is a JPanel with a BoxLayout Here is what is happening ...
0
votes
1answer
36 views

Layouts and positioning

I have a JPanel with BoxLayout.PAGE_AXIS, but when I add two JLabels to it, the first fills the whole JPanel. PreferredSize for JPanel is height 10. Both JLabels have preferred height 5, and width is ...
3
votes
2answers
116 views

How can I add content to a JPanel only AFTER it has been layout

I need to display an image inside a JPanel (which itself is placed in several layers of JPanels) and I want to resize the image to fit the width of the JPanel. Now at the time when I add the Image to ...
0
votes
2answers
263 views

Content in JPanel won't appear

There is no errors but when I Run it the content that I added into the JPanel won't appear, only the one not inside the JPanel appear. import javax.swing.*; import java.awt.*; public class ...
2
votes
1answer
192 views

Automatic Scale JPanel --swing window resized

I use null layout. On resizing the swing window, the JPanel doesn't get resized to fit according to new swing window size. Suggest any function or other way to obviate.
2
votes
1answer
879 views

Setting JPanel layout

(Say) I've created a JPanel with three buttons. I want to place the buttons as follows (I've done this using netbeans GUI editor. But I need to write the whole GUI manually). Can some one show me a ...
1
vote
2answers
73 views

Which Panel to use in Swing

I would like to have a JTable component in one panel to take up as much space as the window allows. Underneath, however, I would like to add another, fixed size panel with a few buttons in it. WHich ...

1 2