2

我认为并希望这是一个小问题。

我有一个JFrame在蛇游戏中显示的。文本,例如"Game Over, your snake is crashed"或其他内容,将显示在JLabel.

问题是我JLabel的总是空的!

这是代码:

package ch.gibb.snake1;

import java.awt.Dimension;
import java.awt.Toolkit;

import javax.swing.JFrame;
import javax.swing.JLabel;

public class endFrame extends JFrame {

        /**
         * Auto-generated VersionUID
         */
        private static final long serialVersionUID = -6535942219723507798L;

        public static void main(String[] args) {
            displayFrame();
        }
        public static void displayFrame() {

            JFrame frame = new JFrame("Game Over");
            JLabel info = new JLabel("My 127.0.0.1 is my castle", JLabel.CENTER);

            int height = 670;
            int width = 630;

            Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
            int ex = (screen.width / 2) - (width / 4); // Center horizontally.
            int ey = (screen.height / 2) - (height / 4); // Center vertically.

            frame.setTitle("Game Over");
            frame.setBounds(ex, ey, width / 2, height / 2);
            frame.setLayout(null);
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

            info.setBounds(ex, ey, width/2, height/2);

            frame.add(info);
            frame.setVisible(true);
        }
    }
4

2 回答 2

1
    frame.setTitle("Game Over");
    frame.setBounds(ex, ey, width / 2, height / 2);
    //frame.setLayout(null);
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

    //info.setBounds(ex, ey, width / 2, height / 2);

最终结果:

结束游戏

于 2013-01-06T14:03:23.777 回答
0

JLabel您将 X 和 Y 坐标设置在JFrames此处的尺寸之外时,不会显示:

info.setBounds(ex, ey, width / 2, height / 2);

您需要在JFrame.

frame.setBounds(ex, ey, width / 2, height / 2);

同样使用布局管理器将消除对子组件本身设置边界的需要。

于 2013-01-06T14:00:56.407 回答