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 8600479
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T01:37:34+00:00 2026-06-12T01:37:34+00:00

I am setting a layout for some buttons. I am trying to have 2

  • 0

I am setting a layout for some buttons. I am trying to have 2 buttons in the middle, and one at the end. I have two in the middle, but the one at the end is off to the side. How can I set the “back” button to be below the other buttons. (I have researched this).

public class Options extends JPanel
{
    private static final long serialVersionUID = 1L;
    JButton b1 = new JButton("Back");
    JButton b4 = new JButton("Textures");
    JButton b5 = new JButton("Settings");

public Options()
{
    setLayout(new GridBagLayout());
    GridBagConstraints c = new GridBagConstraints();
    c.anchor = GridBagConstraints.CENTER;
    c.weighty = 1;
    c.gridx = 0;
    c.gridy = 0;
    c.ipadx = 5;
    add(b5, c);
    c.ipadx = 1;
    c.gridy = 1;
    add(b4, c);
    c.weighty = 1;
    c.gridy = 2;
    c.anchor = GridBagConstraints.PAGE_END;
    add(b1, c);
 }
}

My layout error

EDIT:
I have updated my code above. The offset error has been fixed, but b5 is on top instead of centered (b4 is centerd, b1 is on the bottom).

  • 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-12T01:37:35+00:00Added an answer on June 12, 2026 at 1:37 am

    This should be close enough to the layout I think you are trying to get:

        setLayout(new GridBagLayout());
        GridBagConstraints c = new GridBagConstraints();
    
        JPanel layout = new JPanel(new GridLayout(0, 1));
        layout.add(new JButton("Settings"));
        layout.add(new JButton("Textures"));
    
        c.anchor = GridBagConstraints.CENTER;
        c.weighty = 1.0;
        c.gridy = 0;
        add(layout, c);
    
        c.gridy = 1;
        c.weighty = 0.1;
        c.anchor = GridBagConstraints.PAGE_END;
        add(new JButton("Back"), c);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

i'm trying to create following layout: http://jsfiddle.net/BTuMH/1/ but without setting the width, like: http://jsfiddle.net/yuGyg/
I have two buttons on a widget that change some items in a widget,
I have a linear layout with two listviews and two dead buttons. How to
I m creating a class that extends AlertDialog. and setting layout. But when pop
I'm setting up a very simple fixed-liquid layout. The header is set to 100%,
I am trying to have a ProgressDialog appear when I am getting some data,
I've home scrren widget, and I'm generating some items inside (i have a layout
Hard to summarize in one question, but here are the details: I have an
I have the following layout: <div id=content> <div id=img><img src=></div> <div id=main>Some content</div> <div
I have a LinearLayout that I use as a container for some buttons and

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.