Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8306761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T18:23:40+00:00 2026-06-08T18:23:40+00:00

I have a JPanel ( panel ), the layout of which is set to

  • 0

I have a JPanel (panel), the layout of which is set to BoxLayout. I also have a custom class MapRow, which extends JPanel (and has a few components inside it in a simple FlowLayout), and I wish to add the instances of MapRow to panel in a simple, left-aligned, top-down fashion. Consider the following method:

public void drawMappingsPanel(JPanel panel) {
        panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));

        int s = /* aMethodCall() */;
        for (int i = 0; i < s; i++) {
            MapRow row = new MapRow();
            row.setAlignmentX(LEFT_ALIGNMENT);
            panel.add(row);
        }
    }

However, when I run the code, all MapRow panels are centrally aligned, like below:

enter image description here

How can I align the MapRow panels to the left? The setAlignmentX(LEFT_ALIGNMENT) method doesn’t seem to work…

EDIT : I just replaced instances of MapRow with dummy JButtons, and they got left-aligned all fine. So components such as JButtons can be left aligned using setAlignmentX(), but JPanels cannot be?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T18:23:41+00:00Added an answer on June 8, 2026 at 6:23 pm

    You should use a LEFT-alignement for you FlowLayout in MapRow. Here is a small SSCCE illustrating that:

    import java.awt.Color;
    import java.awt.FlowLayout;
    
    import javax.swing.BorderFactory;
    import javax.swing.BoxLayout;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    
    public class TestJPanels {
    
        protected void initUI() {
            final JFrame frame = new JFrame(TestJPanels.class.getSimpleName());
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            JPanel panel = new JPanel();
            panel.setLayout(new BoxLayout(panel, BoxLayout.PAGE_AXIS));
            for (int i = 0; i < 5; i++) {
                JLabel label = new JLabel("Label-" + i);
                label.setBorder(BorderFactory.createLineBorder(Color.GREEN));
                JPanel insidePanel = new JPanel(new FlowLayout(FlowLayout.LEFT));
                insidePanel.add(label);
                insidePanel.setBorder(BorderFactory.createLineBorder(Color.RED));
                panel.add(insidePanel);
            }
            frame.add(panel);
            frame.pack();
            frame.setVisible(true);
        }
    
        public static void main(String[] args) {
            SwingUtilities.invokeLater(new Runnable() {
    
                @Override
                public void run() {
                    new TestJPanels().initUI();
                }
            });
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a class (Timeline) which extends JPanel. The Timeline Panel contains many JLabels
I have a class that extends JPanel. On the panel I have added an
I have a class MyPanel that extends JPanel . MyPanel is a child panel:
I have a JPanel (A) which contains another JPanel (B). Each panel implements a
I have an JPanel populated with several opaque custom components. Now I would like
I have a JPanel which uses a BoxLayout in the X_AXIS direction. The problem
I have a JFrame which uses BorderLayout as a layout manager. I also have
I have a JFrame with a CardLayout set as its layout manager. This has
I have a JPanel inside BorderLayout.CENTER The JPanel has a Grid Layout, and I
There is a panel in a JFrame called a WatchPanel extends JPanel which uses

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.