哪种布局可以做到这一点?

2022-09-02 00:22:13

我正在尝试在我的应用程序中布局一些JLabels,如以下示例所示:

enter image description here

我总是在中间有这个JLabel,其他JLabels的数量是可变的,它可以从1到30。我已经尝试了网格布局,选择了大量的列/行,并在空白处设置了一些空的JLabels,但我无法得到一个好的结果,也找不到如何使用MigLayout做到这一点,有没有人有一个很好的布局灵魂或任何其他解决方案。

PS:我不想显示圆圈,只是为了表明JLabels排列在一个圆圈中。


答案 1

您不需要专门支持此功能的布局管理器。您可以使用一些相当简单的三角函数来计算x,y位置,然后使用常规布局,例如.SpringLayout

import java.awt.Point;
import java.util.ArrayList;
import java.util.List;

import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.SpringLayout;

public class CircleLayout {

  /**
   * Calculate x,y positions of n labels positioned in
   * a circle around a central point. Assumes AWT coordinate
   * system where origin (0,0) is top left.
   * @param args
   */
  public static void main(String[] args) {
    int n = 6;  //Number of labels
    int radius = 100;
    Point centre = new Point(200,200);

    double angle = Math.toRadians(360/n);
    List<Point> points = new ArrayList<Point>();
    points.add(centre);

    //Add points
    for (int i=0; i<n; i++) {
      double theta = i*angle;
      int dx = (int)(radius * Math.sin(theta));
      int dy = (int)(-radius * Math.cos(theta));
      Point p = new Point(centre.x + dx, centre.y + dy);
      points.add(p);
    }

    draw(points);
  }

  private static void draw(List<Point> points) {
    JFrame frame = new JFrame("Labels in a circle");
    frame.setSize(500, 500);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    JPanel panel = new JPanel();;
    SpringLayout layout = new SpringLayout();

    int count = 0;
    for (Point point : points) {
      JLabel label = new JLabel("Point " + count);
      panel.add(label);
      count++;
      layout.putConstraint(SpringLayout.WEST, label, point.x, SpringLayout.WEST, panel);
      layout.putConstraint(SpringLayout.NORTH, label, point.y, SpringLayout.NORTH, panel);
    }

    panel.setLayout(layout);

    frame.add(panel);
    frame.setVisible(true);

  }
}

the mathsscreenshot


答案 2

我怀疑您的要求非常专业,以至于没有一个布局管理器可以完成您所需要的事情。尝试创建自己的!