JavaFX Splash Screen – Genuine Coder

JavaFX Splash Screen

Splash screens are awesome. They allows to engage users when the application load in the background as a loading screen. In this article, we will talk about implementing JavaFX Splash Screen / Loading Screen with animation. For the splash screen, we will provide a fade-in and fade-out transition.

Splash Screen with Fade Animation

In this example, when the program starts, the splash screen will fade in. After some time, the flash screen will fade out.

The algorithm is as follows

  • Load Preloader with a fade-in effect using FadeTransition
  • Remove Preloader with a fade-out effect using Fade transition.
  • On the end of fade-out load the actual content to the frame.

Watch the implementation:-

Let’s have a look at the code. The code is properly commented.

private void loadSplashScreen() {
	try {
		//Load splash screen view FXML
		StackPane pane = FXMLLoader.load(getClass().getResource(("myAwesomeSplashDesign.fxml")));
		//Add it to root container (Can be StackPane, AnchorPane etc)
		root.getChildren().setAll(pane);

		//Load splash screen with fade in effect
		FadeTransition fadeIn = new FadeTransition(Duration.seconds(3), pane);
		fadeIn.setFromValue(0);
		fadeIn.setToValue(1);
		fadeIn.setCycleCount(1);

		//Finish splash with fade out effect
		FadeTransition fadeOut = new FadeTransition(Duration.seconds(3), pane);
		fadeOut.setFromValue(1);
		fadeOut.setToValue(0);
		fadeOut.setCycleCount(1);

		fadeIn.play();

		//After fade in, start fade out
		fadeIn.setOnFinished((e) -> {
			fadeOut.play();
		});

		//After fade out, load actual content
		fadeOut.setOnFinished((e) -> {
			try {
				AnchorPane parentContent = FXMLLoader.load(getClass().getResource(("/main.fxml")));
				root.getChildren().setAll(parentContent);
			} catch (IOException ex) {
				Logger.getLogger(MainController.class.getName()).log(Level.SEVERE, null, ex);
			}
		});
	} catch (IOException ex) {
		Logger.getLogger(MainController.class.getName()).log(Level.SEVERE, null, ex);
	}
}

How to show splash screen until loading gets completed

Sometimes you may want to do some actual work like loading a database or importing something. In this case, we will have to do it in the background while splash screen is shown.

You can do the heavy lifting tasks on the setOnFinished() method of fade-in transition.

fadeIn.setOnFinished((e) -> {
    //Do the loading tasks
    DatabaseImporter.import();
    SomeComplexTask.start();
    //...
    //After the background tasks are done, load the fadeout
    fadeOut.play();
});
Problem with this approach

The above code works fine when the background tasks are not that much (when the tasks complete within couple of seconds max). But if it is a long task, then the JavaFX UI Thread will hang. In this case, you might have to use a separate thread for processing the background tasks.

The reliable solution

You can make use of JavaFX Tasks or JavaFX Services. Then using a task complete listener, you can initiate fade out transition.

fadeIn.setOnFinished((e) -> {
    //Start the Worker Task
    BackgroundWorkerTask task = new BackgroundWorkerTask();
    task.start();
    //After the completion of the task, start fadeOut animation
    task.setOnSucceeded(successEvent -> {
      fadeOut.play();
    });
});

So, that’s how you implement a JavaFX Splash Screen.

See example on GitHub

JavaFX Splash Screen without Borders

In this video tutorial, you can see how to make a splash screen in a separate window without window borders. Here, splash screen uses a separate stage.

Comments

49 responses to “JavaFX Splash Screen”

  1. … [Trackback]

    […] Information on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  2. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  3. … [Trackback]

    […] Find More here on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  4. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  5. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  6. … [Trackback]

    […] Information on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  7. … [Trackback]

    […] Read More on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  8. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  9. … [Trackback]

    […] Read More Information here on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  10. … [Trackback]

    […] Here you can find 90618 more Info to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  11. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  12. … [Trackback]

    […] Find More Info here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  13. … [Trackback]

    […] Here you can find 46037 additional Information to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  14. … [Trackback]

    […] Find More here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  15. … [Trackback]

    […] Read More Information here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  16. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  17. … [Trackback]

    […] There you will find 51255 more Info on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  18. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  19. … [Trackback]

    […] Read More to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  20. … [Trackback]

    […] Find More to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  21. … [Trackback]

    […] Find More on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  22. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  23. … [Trackback]

    […] Read More here on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  24. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  25. … [Trackback]

    […] Read More Info here to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  26. … [Trackback]

    […] There you can find 62724 additional Information on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  27. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  28. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  29. … [Trackback]

    […] Here you will find 92787 more Information to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  30. … [Trackback]

    […] There you will find 55058 additional Info on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  31. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  32. … [Trackback]

    […] Info on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  33. … [Trackback]

    […] Here you will find 69600 additional Information to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  34. … [Trackback]

    […] Read More on on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  35. … [Trackback]

    […] Info to that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  36. … [Trackback]

    […] Information on that Topic: genuinecoder.com/javafx-splash-screen-loading-screen/ […]

  37. commande kamagra livraison le samedi

    acheter kamagra dans une pharmacie américaine sans ordonnance

  38. how to order enclomiphene cheap next day delivery

    discount enclomiphene lowest price

  39. buy cheap androxal cheap in uk

    buy androxal usa price

  40. cheapest buy flexeril cyclobenzaprine generic pricing

    buying flexeril cyclobenzaprine cheap to buy online

  41. get dutasteride usa drugstore

    discount dutasteride australia pharmacy

  42. ordering fildena buy in australia

    ordering fildena generic for sale

  43. indian pharma itraconazole

    online order itraconazole purchase singapore

  44. online order staxyn purchase to canada

    online order staxyn cheap online pharmacy

  45. buy cheap avodart cheap from usa

    order avodart generic brand

  46. buying rifaximin buy uk no prescription

    get rifaximin usa drugstore

  47. purchase xifaxan uk no prescription

    buying xifaxan cheap real

  48. kde mナッナセete zテュskat kamagra bez lテゥkaナ冱kテゥho pナ册dpisu

    kanadskテゥ lテゥkテ。rny bez lテゥkaナ冱kテゥho pナ册dpisu

Leave a Reply Cancel reply

Exit mobile version