Imagine yourself as a director of a play. First you provision the props that you will feature in your play. These can be hand props for your actors to interact with or even set dressings just to liven up the background. You then decide where to layout the props for every scene. With a proper script in hand, you can finally approach a theatre and request for a stage. There on, it’s just a matter of pulling the curtains on your masterpiece.
A JavaFX application is like a play you are directing. Instead of creating props, you create Nodes
(Nodes
are the fundamental building blocks of a JavaFX application), and place them onto a Scene
(a scene is a graph of Node
s). Then, you set your Scene
on a Stage
provided by JavaFX. When you call Stage#show()
method, JavaFX renders a window with your Stage
on it.
-
Download the JavaFX 11 SDK and unzip it.
-
Import the
libs
folder from the SDK into your project (note:JAVAFX_HOME
is the directory in which you have unzipped the JavaFX SDK).File
>Project Structure
>Libraries
>+
>Java
>{JAVAFX_HOME}/lib
-
From
Run
>Edit Configurations
, add the following line into yourVM options
for each of themain
classes.--module-path {JAVAFX_HOME}/lib --add-modules javafx.controls,javafx.fxml
e.g.,--module-path C:/javafx-sdk-11.0.2/lib --add-modules javafx.controls,javafx.fxml
Update your build.gradle
to include the following lines:
plugins {
id 'java'
id 'org.openjfx.javafxplugin' version '0.0.7'
}
repositories {
mavenCentral()
}
javafx {
version = "11.0.2"
modules = [ 'javafx.controls', 'javafx.fxml' ]
}
As customary, let’s start off with a simple “Hello World” program. Modify your Duke
class to extend javafx.application.Application
. This requires you to override the Application#start()
method and provide a concrete implementation. Notice that the method signature for Application#start()
has a parameter Stage
. This is the primary stage that JavaFX provides.
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.stage.Stage;
public class Duke extends Application {
// ...
@Override
public void start(Stage stage) {
Label helloWorld = new Label("Hello World!"); // Creating a new Label control
Scene scene = new Scene(helloWorld); // Setting the scene to be our Label
stage.setScene(scene); // Setting the stage to show our screen
stage.show(); // Render the stage.
}
}
Note how we have created a Label
to contain the text that we want to show. We then create the Scene
and set its content. Finally, we set the stage and show it.
Next, we create another Java class, Launcher
, as an entry point to our application.
The Launcher
class is reproduced below in its entirety.
import javafx.application.Application;
/**
* A launcher class to workaround classpath issues.
*/
public class Launcher {
public static void main(String[] args) {
Application.launch(Duke.class, args);
}
}
Run Launcher
and you should see something like this:
Congratulations! You have created your first GUI application!
-
We mentioned that
Node
s are the fundamental building blocks of JavaFX and used aLabel
as our root node in the HelloWorld application.- What are some of the other types of
Node
s? - How does JavaFX group them?
- What are some of the other types of
-
Node
s can be interacted with like Plain Old Java Objects (POJO).- What properties of a
Label
can you change programmatically? - Try changing the
Label
to have a font of Arial at size 50.
- What properties of a
-
You’ve learnt that a
Stage
can be thought of as a window.- Can you have more than one
Stage
an application? - Try creating another stage and showing it! What happens?
- Can you have more than one
Authors:
- Initial Version: Jeffry Lum