这就是我想要实现的目标:
|--0--|--1--|--2--|--3--|--4--|--5--|--6--|--7--|--8--|--9--|
0 | |JLabe|l----|-----|-----|-----|-----|-----|-----|-----|
1 | | |JLabe|l----|-----|-----|-----|-----|-----|-----|
2 | | | |JLabe|l----|-----|-----|-----|-----|-----|
3 | | | |JLabe|l----|-----|-----|-----|-----|-----|
这就是我到目前为止所得到的,这是我所能达到的最接近我所追求的。
center.setLayout(centerLayout);
JPanel[] card = new JPanel[1]; //update as it gets longer, eventually Scoreboard.LENGTH
card[0] = new JPanel();
GridBagLayout cardLayout = new GridBagLayout();
card[0].setLayout(cardLayout);
cardLayout.setConstraints(winner, new GridBagConstraints(0, 0, 10, 1, 1, 0, GridBagConstraints.FIRST_LINE_START, GridBagConstraints.NONE, new Insets(0,0,0,0), 0, 0));
card[0].add(winner);
cardLayout.setConstraints(name, new GridBagConstraints(1, 1, 9, 1, 0.8, 0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(0,0,0,0), 0, 0));
card[0].add(name);
cardLayout.setConstraints(with, new GridBagConstraints(2, 2, 8, 1, 0.7, 0, GridBagConstraints.LINE_START, GridBagConstraints.NONE, new Insets(0,0,0,0), 0, 0));
card[0].add(with);
cardLayout.setConstraints(score, new GridBagConstraints(2, 3, 8, 1, 0.7, 0, GridBagConstraints.LAST_LINE_START, GridBagConstraints.NONE, new Insets(0,0,0,0), 0, 0));
card[0].add(score);
center.add(card[0], "card1");
this.getContentPane().add(center);
由于某种原因,它显示如下:
|--0--|--1--|--2--|--3--|--4--|--5--|--6--|--7--|--8--|--9--|
0 |JLabe|l----|-----|-----|-----|-----|-----|-----|-----|-----|
1 |JLabe|l----|-----|-----|-----|-----|-----|-----|-----|-----|
2 |JLabe|l----|-----|-----|-----|-----|-----|-----|-----|-----|
3 |JLabe|l----|-----|-----|-----|-----|-----|-----|-----|-----|
也许有一种比使用 GridBagLayout 更合适的方式来布置我的文本。(它确实需要在不同的分辨率下工作,因此使用的任何布局管理器都需要灵活)