2012-05-09 22 views
4

我正在为我的应用程序启动启动画面。它只是由Graphics2D绘制的静态BufferedImage,在JFrame内部没有装饰。我的问题是:有时窗口绘制不正确,这意味着它并不总是包含我的图像,有时只是灰色。我尝试在第二个线程中创建启动画面,但它没有帮助。我可以打电话给splashScreen.repaint()每一行,但它是胡说八道......这里是我的代码:灰色启动画面由于没有重新粉刷

package SeriousSteve.MapEditor; 

import java.awt.Graphics2D; 
import java.awt.image.BufferedImage; 
import java.io.IOException; 
import java.net.URL; 
import java.util.logging.Level; 
import java.util.logging.Logger; 
import javax.imageio.ImageIO; 
import javax.swing.JFrame; 

/** 
* Simple splash screen, contains only the image. 
* 
* @author m4tx3 
*/ 
public class SplashScreen extends JFrame { 

    private BufferedImage image; 

    /** 
    * Constructor. Creates a window with splash screen, loads an image at the 
    * URL specified in imageURL, and finally displays this image. 
    * 
    * @param imageURL URL to the image that you want to put on the splash 
    *     screen. 
    */ 
    public SplashScreen() { 
     super("Splash screen"); 
    } 

    public void createSplashScreen(final URL imageURL) { 
     try { 
      image = ImageIO.read(imageURL); 
     } catch (IOException ex) { 
      Logger.getLogger(SplashScreen.class.getName()). 
        log(Level.SEVERE, null, ex); 
     } 
     setUndecorated(true); 
     setSize(image.getWidth(), image.getHeight()); 
     setLocationRelativeTo(null); 
     setVisible(true); 

     createGraphics(); 

     repaint(); 
    } 

    /** 
    * Creates a graphics context and draws a splash screen. 
    */ 
    private void createGraphics() { 
     Graphics2D g = (Graphics2D) getGraphics(); 
     g.drawImage(image, 0, 0, null); 
    } 

    /** 
    * Closes the splash screen and frees the memory taken by the image. 
    * 
    * Call this function when the loading is complete. 
    */ 
    public void close() { 
     setVisible(false); 
     image = null; 
     dispose(); 
    } 
} 

和:

SplashScreen splashScreen = new SplashScreen(); 
    splashScreen.createSplashScreen(getClass().getResource(
      "Img/splash.png")); 

顺便说一句, - 我创造我自己的闪屏类,因为我。我已经在1个jar文件中获得了2个应用程序(游戏和地图编辑器)...我只想在地图编辑器中显示启动画面,所以我无法修改清单文件。

问候

回答

5

改为使用JLabel。直接在框架上绘画是一个坏主意。

看到这,它的工作原理每次:

import java.awt.image.BufferedImage; 
import java.io.IOException; 
import java.net.MalformedURLException; 
import java.net.URL; 
import java.util.logging.Level; 
import java.util.logging.Logger; 

import javax.imageio.ImageIO; 
import javax.swing.ImageIcon; 
import javax.swing.JFrame; 
import javax.swing.JLabel; 
import javax.swing.SwingUtilities; 

/** 
* Simple splash screen, contains only the image. 
* 
* @author m4tx3 
*/ 
public class SplashScreen extends JFrame { 

    /** 
    * Constructor. Creates a window with splash screen, loads an image at the URL specified in imageURL, and finally displays this image. 
    * 
    * @param imageURL 
    *   URL to the image that you want to put on the splash screen. 
    */ 
    public SplashScreen() { 
     super("Splash screen"); 
    } 

    public void createSplashScreen(final URL imageURL) { 

     JLabel splashLabel = new JLabel(new ImageIcon(imageURL)); 
     add(splashLabel); 
      setSize(splashLabel.getPreferredSize()); 
     setUndecorated(true); 
     setLocationRelativeTo(null); 
     setVisible(true); 

     repaint(); 
    } 

    /** 
    * Closes the splash screen and frees the memory taken by the image. 
    * 
    * Call this function when the loading is complete. 
    */ 
    public void close() { 
     setVisible(false); 
     dispose(); 
    } 

    public static void main(String[] args) { 
     SwingUtilities.invokeLater(new Runnable() { 

      @Override 
      public void run() { 
       try { 
        new SplashScreen().createSplashScreen(new URL(
          "http://art.gnome.org/download/themes/splash_screens/1334/Splash-GnomeDarkSplashScreen.png")); 
       } catch (MalformedURLException e) { 
        // TODO Auto-generated catch block 
        e.printStackTrace(); 
       } 
      } 
     }); 
    } 
} 
+0

我不得不添加'drawComponents(getGraphics());',但现在它工作!非常感谢:) – m4tx

0

覆盖创建自己Graphicspaint方法来代替。

@Override 
public void paint(Graphics g) { 
    g.drawImage(image, 0, 0, null); 
} 

每次调用repaint时间,这又调用此方法。默认情况下,此方法将使用背景色(灰色)填充JFrame

+0

是的,我试过了,但是......它不工作:( – m4tx

+2

@ m4tx:你不应该在JFrame上直接绘制。 Guillaume得到了一个更好的答案,1+给他,但更好的可能是使用[SplashScreen类](http://docs.oracle.com/javase/7/docs/api/java/awt/SplashScreen.html)随Java一起提供。 –

+0

@ m4tx奇怪,它为我工作 – Jeffrey

4

1)g.drawImage(image, 0, 0, null);

应该

g2d.drawImage(img, 0, 0, img.getWidth(), img.getHeight(), SplashScreen.this); 

code from

import java.awt.BorderLayout; 
import java.awt.Container; 
import java.awt.Dimension; 
import java.awt.Graphics; 
import java.awt.Graphics2D; 
import java.awt.image.BufferedImage; 

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

public class SplashScreen extends JWindow { 
    private JProgressBar bar; 
    private JLabel label; 

    public SplashScreen(final BufferedImage img) { 
    JPanel panel = new JPanel() { 
     public void paintComponent(Graphics g) { 
     super.paintComponent(g); 
     Graphics2D g2d = (Graphics2D) g.create(); 

     g2d.drawImage(img, 0, 0, img.getWidth(), img.getHeight(), 
      SplashScreen.this); 
     } 
    }; 
    panel.setPreferredSize(new Dimension(img.getWidth(), img.getHeight())); 

    Container content = getContentPane(); 
    content.setLayout(new BorderLayout()); 
    content.add(panel, BorderLayout.NORTH); 
    content.add(label = new JLabel(), BorderLayout.CENTER); 
    content.add(bar = new JProgressBar(), BorderLayout.SOUTH); 
    pack(); 
    setLocationRelativeTo(null); 
    } 

    public void setMessage(String msg) { 
    label.setText(msg); 
    pack(); 
    } 

    public void setProgress(int prog) { 
    bar.setValue(prog); 
    } 

    public void setIndeterminateProgress(boolean value){ 
    bar.setIndeterminate(value); 
    } 
} 

2)我建议给我们ËJWindowundecorated JDialog而不是JFrame (from tutorial)

+0

是的,它也可以。有关使用JWindow或JDialog的好建议。尽管我对JFrame有一点喜欢:你会在任务栏中看到一个图标。 –

+0

@Guillaume Polet aaaach我感到“不舒服”,基本教程建议使用JFrame,+1 – mKorbel