列にラベルが付いた行のリストを作成しようとしています。gridbaglayout を使用しようとしていますが、問題が発生しています。ウィンドウを拡大しても拡大しません。これが起こることです:
私が本当に欲しいのは、レイアウト内のセルがスペースの 1/5 を占め、ラベルがセルの左端に移動することです。
public static JPanel createLayout(int rows) {
JPanel product = new JPanel(new GridBagLayout());
String[] lables = {"School", "Advanced #", "Novice #"};
double weight = 1/(lables.length);
for (int i = 0; i < rows; i++) {
GridBagConstraints c = new GridBagConstraints();
c.insets = new Insets(3, 3, 3, 3);
c.anchor = GridBagConstraints.WEST;
c.gridx = i;
c.weightx = weight;
c.fill = GridBagConstraints.HORIZONTAL;
c.anchor = GridBagConstraints.NORTHWEST;
for (int j = 0; j < lables.length; j++) {
JLabel l = new JLabel(lables[j]);
product.add(l, c);
}
}
return product;
}
public static void main(String[] args) throws IOException {
JFrame frame = new JFrame("Debate Calculator");
JPanel debates = new JPanel();
frame.add(createLayout(5), BorderLayout.CENTER);
frame.pack();
frame.setVisible(true);
}