Java выбрать макет - PullRequest
       23

Java выбрать макет

3 голосов
/ 24 мая 2011

Мне нужен следующий макет в Java:

Layout

Однако я должен обнаружить, что ни один менеджер компоновки не может просто решить эту проблему для меня.Мне нужен этот макет в JFrame.

Есть ли простой способ, которым я мог бы это сделать?

Заранее спасибо!

РЕДАКТИРОВАТЬ: Спасибо всем вам, янаконец-то удалось!

Вот что я сделал (как вы предложили)

  • BorderLayout для окна
  • leftPanel, GridLayout (1,1) / *растянуть * /, добавить компонент 1, WEST в окне
  • rightPanel, BorderLayout, CENTER в окне
  • rightTop (добавлено в rightPanel как CENTER), добавить компонент 2
  • rightBottom (добавлено в rightPanel как SOUTH) Панель GridLayout (1,1) (также для растяжения), добавьте Компонент 3

Спасибо всем, чей совет я смешал ^^

Ответы [ 5 ]

3 голосов
/ 21 июля 2011

Я знаю, что вы решили свою проблему с помощью комбинации JPanels, размещенной в BorderLayout менеджере раскладок. Если это работает, это нормально.

Для тех, кому интересно использовать GridBagLayout в качестве решения, я представляю этот класс в качестве примера. Просто скопируйте, вставьте, скомпилируйте и запустите. Перетащите угол окна этого маленького приложения, чтобы увидеть эффекты изменения размера окна.

Screenshot of example layout code enter image description here

// Example code showing the flexibility of GridBagLayout.

// Source code generated by WindowBuilder 1.0.0r37 in Eclipse (Indigo Release) on Mac OS X 10.6.7.

// © 2011 Basil Bourque.   http://www.GridsGoneWild.com/
// This source code may be used freely forever by anyone taking full responsibility for doing so.

// Each layout manager bundled in Java is quite different from the others. They all have strengths and weaknesses,
// each designed for different purposes and effects.

// GridBagLayout is the most powerful and flexible, but takes some patient practice to understand.
// Funny animated video commentary by a GridBagLayout programmer: http://madbean.com/anim/totallygridbag/
// Hand-coding GridBagLayout is certainly tedious, and nearly impossible for complex forms. So I recommend the use of
// a visual GUI builder such as WindowBuilder in Eclipse, JFormDesigner from FormDev.com, or Matisse in NetBeans.

// Key ideas, "grow" & "fill":
// • In WindowBuilder's Design View, select a widget, then use the "Horizontal grow" and "Vertical grow" icons found in the upper right tool bar.
// • Use the widget's (label's, button's) "Constraints" > "fill" property in the property sheet of WindowBuilder.

// Further ideas:
// • To contain multiple widgets in each area, use JPanel objects where I have used single JLabel and JButton objects. 
//   Nesting JPanels inside JPanels (or in the JFrame's contentPane) is considered normal in Swing. Each JPanel has its own layout manager.
// • If need be, you can set the Minimum, Maximum, and/or Preferred size of a widget or JPanel.
// • If you want certain widgets or JPanels to get disproportionately more or less of the space gained or lost when a window is resized, 
//   use "weightx" and "weighty" properties.

// WindowBuilder Tips:
// • If it's your first time: Open the .java file, then click the "Design" button at bottom to see visual editor.
// • Click the "Show Advanced properties" icon at top of a widget's property sheet to see many hidden properties.

// package com.your.package.goes.here;  // Uncomment this line, and modify to suit your own package.

import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import java.awt.GridBagLayout;
import javax.swing.JLabel;
import java.awt.GridBagConstraints;
import java.awt.Color;
import java.awt.Insets;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;

public class GridBagLayout_Example extends JFrame {
    private JPanel contentPane;
    private JLabel lblVariableXVariableY;
    private JButton btnVariableXFixedY;
    private JLabel lblFixedXVariableY;

    /**
     * Launch the application.
     */
    public static void main(String[] args) {
    EventQueue.invokeLater(new Runnable() {
        public void run() {
        try {
            GridBagLayout_Example frame = new GridBagLayout_Example();
            frame.setVisible(true);
        } catch (Exception e) {
            e.printStackTrace();
        }
        }
    });
    }

    /**
     * Constructor
     */
    public GridBagLayout_Example() {
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setBounds(100, 100, 450, 300);
    this.contentPane = new JPanel();
    this.contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
    setContentPane(this.contentPane);
    GridBagLayout gbl_contentPane = new GridBagLayout();
    gbl_contentPane.columnWidths = new int[]{0, 0, 0};
    gbl_contentPane.rowHeights = new int[]{0, 0, 0};
    gbl_contentPane.columnWeights = new double[]{0.0, 1.0, Double.MIN_VALUE};
    gbl_contentPane.rowWeights = new double[]{1.0, 0.0, Double.MIN_VALUE};
    this.contentPane.setLayout(gbl_contentPane);

    this.lblFixedXVariableY = new JLabel("Fixed x, Variable y");
    this.lblFixedXVariableY.setOpaque(true);
    this.lblFixedXVariableY.setBackground(new Color(233, 150, 122));
    GridBagConstraints gbc_lblFixedXVariableY = new GridBagConstraints();
    gbc_lblFixedXVariableY.fill = GridBagConstraints.VERTICAL;
    gbc_lblFixedXVariableY.gridheight = 2;
    gbc_lblFixedXVariableY.insets = new Insets(0, 0, 5, 5);
    gbc_lblFixedXVariableY.gridx = 0;
    gbc_lblFixedXVariableY.gridy = 0;
    this.contentPane.add(this.lblFixedXVariableY, gbc_lblFixedXVariableY);

    this.lblVariableXVariableY = new JLabel("Variable x & y");
    this.lblVariableXVariableY.setBackground(new Color(147, 112, 219));
    this.lblVariableXVariableY.setOpaque(true);
    GridBagConstraints gbc_lblVariableXVariableY = new GridBagConstraints();
    gbc_lblVariableXVariableY.fill = GridBagConstraints.BOTH;
    gbc_lblVariableXVariableY.insets = new Insets(0, 0, 5, 0);
    gbc_lblVariableXVariableY.gridx = 1;
    gbc_lblVariableXVariableY.gridy = 0;
    this.contentPane.add(this.lblVariableXVariableY, gbc_lblVariableXVariableY);

    this.btnVariableXFixedY = new JButton("Variable x, Fixed y");
    this.btnVariableXFixedY.addActionListener(new ActionListener() {
        public void actionPerformed(ActionEvent arg0) { 
        }
    });
    this.btnVariableXFixedY.setOpaque(true);
    GridBagConstraints gbc_btnVariableXFixedY = new GridBagConstraints();
    gbc_btnVariableXFixedY.fill = GridBagConstraints.HORIZONTAL;
    gbc_btnVariableXFixedY.gridx = 1;
    gbc_btnVariableXFixedY.gridy = 1;
    this.contentPane.add(this.btnVariableXFixedY, gbc_btnVariableXFixedY);
    }

}
2 голосов
/ 24 мая 2011

Граница с 2 панелями, одним WEST и одним центром.На панели CENTER может работать borderLayout с компонентами Center и Nrth.

1 голос
/ 25 мая 2011

Альтернативой моему предыдущему ответу является MigLayout.

Это внешняя зависимость (ее нет в JDK), но это один из самых мощных доступных макетов. А с помощью GUI-компоновщика, такого как WindowBuilder от Google , его также очень легко использовать (или играть с ним).

Даже если вы не хотите создавать свой графический интерфейс с помощью WindowBuilder, он наверняка поможет вам начать работу.

1 голос
/ 24 мая 2011

Это не особенно просто, но я думаю, что вы должны использовать GridBagLayout. http://download.oracle.com/javase/tutorial/uiswing/layout/gridbag.html

0 голосов
/ 24 мая 2011

Я получил это, работая с простым BorderLayout с JPanel WEST и одним EAST.

Мой код

...
inGameFrame.getContentPane ().setLayout (new BorderLayout ());
inGameFrame.getContentPane ().add ("East", pnlRight);
inGameFrame.getContentPane ().add ("South", pnlBottom);
inGameFrame.getContentPane ().add ("Center", pnlGameBoard);
...

Если это не работает, попробуйте установить панели или компонентыsize.
(Даже если я изменю размер JFrame, размер изменяется только по центру панели)

РЕДАКТИРОВАТЬ
Что вы можете попробовать: добавитьпанель на запад, и добавьте новый центр панели (также BorderLayout).Затем на новой панели добавьте две другие ваши панели, одну по центру и одну снизу.Это даст желаемый эффект.

...
JPanel pnlNew = new JPanel();
frame.getContentPane ().setLayout (new BorderLayout ());
pnlNew.setLayout (new BorderLayout ());
pnlNew.add ("Center", pnlMiddle);
pnlNew.add ("South", pnlBottom);
frame.getContentPane ().add ("West", pnlLeft);
frame.getContentPane ().add ("Center", pnlNew);
...
...