我正在尝试设置带有按钮的菜单系统;但是,只显示一个按钮。

好吧,我发现了问题,我无法从一个类或其子类中创建Button类的多个实例。如果这样做,它不会正确创建第二个实例,因此它将缺少背景图像。这与我将Button类设置为标准类的事实有关吗?

这是Button类的主要部分,所有我都从其中取出get方法来返回该类中事物的值。

public class Button {
private int x, y;
private int width, height;
private Image sprite;
private data.ImageControl Image = new data.ImageControl();
private String text = "";

public Button() {
    sprite = Image.getImage("game/menu/btn.png");
}

public void setImage(String file) {
    sprite = Image.getImage(file);
}

public void draw(Graphics2D g) {
    g.drawImage(sprite, x, y, null);
    Font_LARGE font = new Font_LARGE();

    //Find text pos
    int stringX, stringY;
    int textWidth;
    textWidth = text.length() * 14;

    stringX = x + ((width / 2) - (textWidth / 2));
    stringY = y + ((height / 2) - 8);

    font.drawString(g, text, stringX, stringY);
}


这是我从哪里获得图像的代码:

public Image getImage(String filename) {
    Image img;
    try {
        ImageIcon i = new ImageIcon(getClass().getResource("sprite/" + filename));
        img = i.getImage();
    } catch(Exception e) {
        e.printStackTrace();
        System.err.println("ERROR - Unable to load image at " + filename + " loading empty image.");
        ImageIcon i = new ImageIcon(getClass().getResource("sprite/Physix/noImage.png"));
        img = i.getImage();
    }

    return img;
}

最佳答案

x和y位置是什么?

在我看来,您在另一个按钮上方绘制了一个按钮。

10-06 09:13