2

JPanel/JLabel のように見える JFrame を作成するにはどうすればよいですか?

プログラムがメイン ウィンドウを表示する前に計算を行っている間に表示されるスプラッシュ スクリーンが必要です (Java にスプラッシュ スクリーン オプションがあることは知っていますが、クラスのロード中ではなく、ロード後に表示する必要があります)。

どうすればそれを作成できますか?

4

2 に答える 2

4

JFrame次のような飾りのないものを作成します。

JFrame frame = new JFrame();
frame.setUndecorated(true);

ただし、java.awt.SplashScreenこれは非常に多くのケースで使用およびテストされているコードの一部であるため、使用することをお勧めします。そのため、記述できるものよりも確実に安定しています。

于 2012-11-07T10:36:58.813 に答える
4

JFrame は必要ありません。JWindow を使用した例を次に示します。

ボタンをクリックするとSpash画面が表示され、Spash画面をクリックすると非表示になります。

スパッシュスクリーン

import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import java.util.Properties;

import javax.swing.*;

public class Splashing {

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                JFrame frame = new JFrame("Splashing");
                JButton splash = new JButton("Splash");
                JPanel orangePanel = new JPanel();
                orangePanel.setBackground(Color.orange);
                frame.getContentPane().add(orangePanel, BorderLayout.CENTER);
                frame.getContentPane().add(splash, BorderLayout.SOUTH);
                splash.addActionListener(new ActionListener() {
                    @Override
                    public void actionPerformed(ActionEvent e) {
                        Splash s = new Splash();
                        s.setVisible(true);
                    }
                });
                frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
                frame.setMinimumSize(new Dimension(800, 450));
                frame.setLocationRelativeTo(null); // Center
                frame.pack();
                frame.setVisible(true);
            }
        });
    }

    static class Splash extends JWindow {

        private final Properties sysProps = System.getProperties();

        public Splash() {
            super();
            this.setAlwaysOnTop(true);
            initListeners();
            initGUI();
            this.setVisible(false);
        }

        void initListeners() {
            this.addMouseListener(new MouseAdapter() {
                public void mouseClicked(MouseEvent e) {
                    Splash.this.setVisible(false);
                    Splash.this.dispose();
                }
            });
        }

        void initGUI() {
            final Dimension preferredSize = new Dimension(480, 360);
            setPreferredSize(preferredSize);
            setMinimumSize(preferredSize);
            setMaximumSize(preferredSize);

            Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
            this.setLocation((screenSize.width - 480) >> 1, (screenSize.height - 360) >> 1);
            this.pack();
            repaint();
        }

        public void paint(Graphics g) {
            Graphics2D g2 = (Graphics2D) g;
            g2.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON);
            g2.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON);
            // TODO Add an appropriate image here
            //g2.drawImage(someImage, 0, 0, this);
            drawAboutText2(g2);
        }

        void drawAboutText2(Graphics2D g2) {
            g2.setFont(new Font("Verdana", Font.PLAIN, 10));
            g2.setColor(new Color(128, 130, 132));
            g2.drawString("All rights reserved", 20, 310);
            g2.drawString("Author: To be decided", 20, 325);
            g2.drawString("http://www.mywebsite.com", 20, 340);

            g2.drawString(getBuild(), 260, 295);
            g2.drawString(getJDK(), 260, 310);
            g2.drawString(getVendor(), 260, 325);
            g2.setColor(new Color(241, 101, 56)); // orange

            g2.drawString(getLicensee(), 260, 340);
        }

        private String getBuild() {
            return "Build# 427 on 15. June 2006";
        }

        private String getJDK() {
            return "JDK: " + sysProps.getProperty("java.version");
        }

        private String getVendor() {
            return "Vendor: " + sysProps.getProperty("java.vendor");
        }

        private String getLicensee() {
            return "Licensee: " + "John Doe";
        }
    }
}
于 2012-11-07T10:56:43.523 に答える