0

我一直在主菜单屏幕上工作。我使用卡片布局,因为我有一个显示在主菜单屏幕之前的初始屏幕。一旦用户单击启动屏幕上的“继续”按钮,他们就会被带到主菜单屏幕。

我无法添加屏幕截图,因为我没有足够高的声誉,但到目前为止,按钮被推到一边,我认为是因为卡片布局。

有什么方法可以将按钮放在主菜单屏幕图像的顶部?

这是我的窗口代码:

package edu.ycp.cs.Main;

import java.awt.BorderLayout;
import java.awt.CardLayout;
import java.awt.Container;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JPanel;

public class Window {
    JPanel cards; // a panel that uses CardLayout
    final static String SPLASHSCREEN = "SplashScreen";
    final static String MAINMENU = "MainMenu";

    public void addComponentToWindow(Container pane) {
        // Put the JComboBox in a JPanel to get a nicer look.
        JPanel gameWindow = new JPanel(); // use FlowLayout

        // Create the "cards".
        JPanel card1 = new JPanel();
        JButton continueButton = new JButton("Continue");
        continueButton.addActionListener(new ActionListener() {
            @Override
            public void actionPerformed(ActionEvent e) {
                CardLayout cl = (CardLayout) (cards.getLayout());
                cl.show(cards, MAINMENU);
            }
        });
        card1.add(new SplashScreen());
        card1.add(continueButton);

        JPanel card2 = new JPanel();
        JButton menuButton1 = new JButton("PLAY!");
        JButton menuButton2 = new JButton("HIGH SCORES");
        card2.add(new MainMenuScreen());
        card2.add(menuButton1);
        card2.add(menuButton2);

        cards = new JPanel(new CardLayout());
        cards.add(card1, SPLASHSCREEN);
        cards.add(card2, MAINMENU);

        pane.add(gameWindow, BorderLayout.PAGE_START);
        pane.add(cards, BorderLayout.CENTER);
    }
}

关于如何让按钮位于图像顶部的任何建议?

4

3 回答 3

1
JPanel card1 = new JPanel();
card1.add(new SplashScreen());
card1.add(continueButton);

JPanel 使用 FlowLayout。因此,当您向其中添加两个组件时,它们只是彼此并排绘制。

您希望将组件绘制在彼此之上,因此您需要执行以下操作:

JPanel card1 = new JPanel();
SplashScreen splash = new SplashScreen();
splash.setLayout( new FlowLayout() );
card1. add(splash);
splash.add( continueButton );
于 2013-03-12T18:59:05.647 回答
0

JPanel的包含你的 2menuButton并且MenuScreen没有布局。使用一个喜欢GridBagLayout并将按钮设置在顶部。您可以使用其他布局,这取决于您。

我使用按钮只是为了向您展示一个简单的示例,如果您想使用它GridBagLayout,建议您查看该布局上的 Oracle 页面。

JPanel card2 = new JPanel();
card2.setLayout(new GridBagLayout());
JButton menuButton1 = new JButton("PLAY!");
JButton menuButton2 = new JButton("HIGH SCORES");

JButton menuButton3 = new JButton("UNDER THE 2 OTHERS");

GridBagConstraints gbc2 = new GridBagConstraints();
gbc2.gridx = 0;
gbc2.gridy = 1;
gbc2.weightx = 1;
gbc2.weighty = 1;
gbc2.gridwidth = 2;
gbc2.fill = GridBagConstraints.HORIZONTAL;

GridBagConstraints gbc = new GridBagConstraints();
gbc.gridx = 0;
gbc.gridy = 0;
gbc.weightx = 1;
gbc.weighty = 1;
gbc.fill = GridBagConstraints.HORIZONTAL;

GridBagConstraints gbc3 = new GridBagConstraints();
gbc3.gridx = 1;
gbc3.gridy = 0;
gbc3.weightx = 1;
gbc3.weighty = 1;
gbc3.fill = GridBagConstraints.HORIZONTAL;
card2.add(menuButton1, gbc);
card2.add(menuButton2, gbc3);
card2.add(menuButton3, gbc2);
于 2013-03-12T18:58:30.897 回答
0

如果您的初始屏幕只有一个按钮,您可以尝试将整个初始图像设置为按钮,如下例所示:Java:使用图像作为按钮

您可以编辑现有的初始屏幕图像以在图像本身内添加一个继续按钮。当然,用户可以点击任何地方(因为这将是一个巨大的图像按钮)。

听起来很俗气,我知道。但这可能是一种快速而肮脏的方式来足够接近你想要的东西。

于 2013-03-13T08:50:19.680 回答