I see some Swing apps (like Eclipse) that load with a Welcome!/"splash" page. What kind of Swing component is this? Its sort of like a web page (like the old <imagemap>s!) embedded inside a Swing app and is very cool.

link|improve this question

3  
Eclipse is not a Swing app (it's built on the SWT graphical framework). – Sinjo Feb 24 at 22:45
feedback

3 Answers

up vote 4 down vote accepted

You could design the splash screen using an image editor, like Photoshop or GIMP. Save the image in a format that Java supports, like JPG, GIF, or PNG. Design the splash screen at a resolution that will work on low resolution devices like netbooks and projectors.

E.g. the Eclipse splash screen is ~450x300 pixels:

enter image description here

To display the image, you could use a JDialog whose border and close button have been hidden via setUndecorated(true). The JDialog could contain a single JLabel. Size both the JDialog and JLabel to be able to display the entire image. The JLabel's icon property should be set to the splash screen image.

You could display the splash screen for a fixed amount of time by employing Swing's Timer class. Consider allowing the user to optionally disable the splash screen so they don't always have to waste time watching it every time they start your program.

Or, rather than using a timer to display the splash screen for a fixed amount of time, you could consider hiding the splash screen as soon as the application has finished initializing. What "initializing the application" entails is specific to your application. This is the approach that Eclipse uses (its splash screen even has a progress bar).


Your question actually appears to be about the Eclipse "Welcome screen" (see screenshot below), not the Eclipse "splash screen". The Welcome Screen does include clickable areas. Java has some limited abilities to display HTML content. See http://docs.oracle.com/javase/tutorial/uiswing/components/html.html for some details. Java's built in support for HTML is pretty limited, and so it may not meet your needs. Here is a guide that talks about using a read-only JEditorPane to display HTML content, and capturing hyperlink click events to perform custom actions: http://www.apl.jhu.edu/~hall/java/Swing-Tutorial/Swing-Tutorial-JEditorPane.html

enter image description here

link|improve this answer
Mike - thanks for the great suggestion! But the splash page in Eclipse has clickable buttons/links on it that take you into different sections of the GUI. I know understand that Eclipse is SWT- (not Swing!) based, but does Swing support anything like this imaged JLabel idea of yours, that would allow clickable/interactive sections? – Adam Tannon Feb 24 at 22:55
@AdamTannon Sorry, I thought you meant the splash screen that shows while Eclipse is booting (see screenshot in my answer). I think the screen you are talking about is this the "Welcome" screen. You can see it by going to Help (menu) -> Welcome. This screen is more complex and I think would (at least in Swing) require some custom coding. – Mike Clark Feb 24 at 23:00
feedback

Checkout this tutorial http://docs.oracle.com/javase/tutorial/uiswing/misc/splashscreen.html

link|improve this answer
Cool. I did not know about the Swing class SplashScreen introduced in Java 1.6. Thanks. – Mike Clark Feb 24 at 23:15
feedback

Its really easy to do. Just create a splash screen entry in your manifest file that points to an image resource in your jar file.

e.g.

SplashScreen-Image: resources/splash.png

The image can even have transparency, so you can make it appear to be non-rectangular.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.