BorderLayout as Layout Manager in Java
Submitted by donbermoy on Thursday, November 27, 2014 - 18:28.
This tutorial is about the BorderLayout as Layout Manager in Java. A BorderLayout is a layout where it has a rectangular screen area divided into five regions - North, South, East, West, and Center position regions.
So, now let's start this tutorial!
1. Open JCreator or NetBeans and make a java program with a file name of borderLayout.java.
2. Import the following packages:
3. Initialize your variable in your Main, variable frame for JFrame, and 4 buttons namely btnNorth, btnSouth, btnEast, and btnWest as JButton.
Then, we will add the four buttons into the frame with a different positions in a BorderLayout.
The BorderLayout.NORTH assumes that the button is in the top position, BorderLayout.SOUTH in the bottom, BorderLayout.EAST in the left, and BorderLayout.WEST is in the right position, respectively.
5. Lastly, set the size, visibility, and the close operation of the frame. Have this code below:
Output:
Here's the full code of this tutorial:
For more inquiries and need programmer for your thesis systems in any kind of programming languages, just contact my number below.
Best Regards,
Engr. Lyndon Bermoy
IT Instructor/System Developer/Android Developer/Freelance Programmer
Mobile: 09488225971
Landline: 826-9296
E-mail:[email protected]
Add and Follow me on Facebook: https://www.facebook.com/donzzsky
Visit and like my page on Facebook at: https://www.facebook.com/BermzISware
- import java.awt.*; //used to access the BorderLayout class
- import javax.swing.*; //used to access the JFrame and JButton class
4. To set your program layout to BorderLayout, we will use the setLayout method of the JFrame and put inside the BorderLayout class on it.
- frame.setSize(200, 100);
- frame.setVisible(true);

- import java.awt.*; //used to access the BorderLayout class
- import javax.swing.*; //used to access the JFrame and JButton class
- public class borderLayout{
- JButton btnNorth, btnSouth, btnEast, btnWest;
- frame.setSize(200, 100);
- frame.setVisible(true);
- }
- }
Add new comment
- 41 views