无法在GridLayout中更改JLabel的大小

时间:2012-06-14 18:40:15

标签: java swing user-interface jlabel layout-manager

我有一个标签,显示从“0英尺”到“999英尺”的字符串,所以最大值需要大小为6的字符串。我正在使用网格布局,以便我可以将该标签放在特定的列应该在哪里。我也想要标签的背景。但问题是我无法正确设置背景的大小。

I want to size down the black part to only the required amount which im not ablet to do

    public Controller() {
    super(new GridLayout(9, 9));
    try {
        Background = ImageIO.read(getClass().getResourceAsStream(
                "background.jpg"));
        TestImage = ImageIO.read(getClass().getResourceAsStream(
                "VTOLHorizontalLevelIndicator.png"));
        setPreferredSize(new Dimension(Background.getWidth(null),
                Background.getHeight(null)));

    } catch (IOException ex) {
        ex.printStackTrace();
    }

    for (Direction direction : Direction.values()) {
        directionMap.put(direction, false);
    }
    setKeyBindings();
    Timer timer = new Timer(TIMER_DELAY, new TimerListener());
    timer.start();
    int i = 3;
    int j = 11;
    JLabel[][] panelHolder = new JLabel[i][j];
    setLayout(new GridLayout(i, j));

    for (int m = 0; m <= 2; m++) {
        for (int n = 0; n <= 10; n++) {
            if (m == 1 && n == 1) {
                lblAltitude.setFont(new Font("Gotham Bold",1,12));
                lblAltitude.setToolTipText("Altitude");
                lblAltitude.setOpaque(true);
                lblAltitude.setBackground(Color.black);
                lblAltitude.setMinimumSize(new Dimension(50,25));
                add(lblAltitude);
            } else {
                panelHolder[m][n] = new JLabel(" ");
                add(panelHolder[m][n]);
            }
        }
    }

}

上面的代码显示了我正在初始化GridLayout和标签的构造函数。 我是否使用了正确的布局? 我主要担心的是在正确的位置获取标签,可能不是网格方式,而是在此GUI中的某些坐标处。

1 个答案:

答案 0 :(得分:4)

GridLayout将展开所有组件以填充面板(为每个组件提供相同的大小)。