我正在使用JWindow在应用程序启动期间显示我的启动屏幕。但是,它不会出现在所有窗口的前面,也不会消失。

import java.awt.BorderLayout;
import java.awt.Color;
import java.awt.Dimension;
import java.awt.Font;
import java.awt.Toolkit;

import javax.swing.BorderFactory;
import javax.swing.ImageIcon;

import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JWindow;

public class MySplash {
    public static MySplash INSTANCE;
    private static JWindow jw;

    public MySplash(){
        createSplash();
    }

    private void createSplash() {
        jw = new JWindow();
        JPanel content = (JPanel) jw.getContentPane();
        content.setBackground(Color.white);

        // Set the window's bounds, centering the window
        int width = 328;
        int height = 131;
        Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
        int x = (screen.width - width) / 2;
        int y = (screen.height - height) / 2;
        jw.setBounds(x, y, width, height);

        // Build the splash screen
        JLabel label = new JLabel(new ImageIcon("splash.jpg"));
        JLabel copyrt = new JLabel("SplashScreen Test",
            JLabel.CENTER);
        copyrt.setFont(new Font("Sans-Serif", Font.BOLD, 12));
        content.add(label, BorderLayout.CENTER);
        content.add(copyrt, BorderLayout.SOUTH);
        Color oraRed = new Color(156, 20, 20, 255);
        content.setBorder(BorderFactory.createLineBorder(oraRed, 0));

    }

    public synchronized static MySplash getInstance(){
        if(INSTANCE==null){
            INSTANCE = new MySplash();
        }

        return INSTANCE;

    }

    public void showSplash(){
        jw.setAlwaysOnTop(true);
        jw.toFront();
        jw.setVisible(true);
        return;
    }

    public void hideSplash(){
        jw.setAlwaysOnTop(false);
        jw.toBack();
        jw.setVisible(false);
        return;
    }
}


因此,在扩展JFrame的主类中,我将启动屏幕称为

    SwingUtilities.invokeLater(new Runnable(){

        @Override
        public void run() {
            MySplash.getInstance().showSplash();
        }

    });


但是,JWindow出现在计算机上所有打开的Windows实例的后面。隐藏JWindow也不起作用。

    SwingUtilities.invokeLater(new Runnable(){

        @Override
        public void run() {
            MySplash.getInstance().hideSplash();
        }

    });

最佳答案

您可能要看一下java.awt.SplashScreen。但是,如果您对解决方案有信心:

Window#toFront


  如果该窗口可见,请将其置于最前面,并可能
  使其成为重点窗口。


尝试使JWindow可见,然后将其显示在最前面。

我不确定为什么您的JWindow没有隐藏,该部分对我有用。

/ e1
如果尝试实现singleton pattern,则应将构造函数和字段设为私有。您可能还想看看What is an efficient way to implement a singleton pattern in Java?

/ e2
returnshowSplash方法末尾的hideSplash是不必要的,无论如何该方法将在那时返回。

关于java - Java Swing:JWindow出现在所有其他进程窗口的后面,并且不会消失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8320179/

10-09 07:22