| Author |
How to load ImageView in TilePane
|
Rakoczi Markus
Greenhorn
Joined: Mar 13, 2012
Posts: 13
|
|
Hello,
i have a program that should load images from a selected folder and add them to a TilePane, all the loading process it's made within a Task. My problem is when the image loading thread want's to access the TilePane it stops. How should i implement this to work well and fast with folders where there are up to 50-60 images each one more than 2 MB.
|
 |
John Damien Smith
Ranch Hand
Joined: Jan 26, 2012
Posts: 40
|
|
Wrap the following call in a call to Platform.runLater.
This will ensure that the actively displayed scene graph is only modified by the JavaFX Application thread (which is a requirement of the JavaFX architecture).
|
 |
Rakoczi Markus
Greenhorn
Joined: Mar 13, 2012
Posts: 13
|
|
|
Thank you, thank you - it's working.
|
 |
 |
|
|
subject: How to load ImageView in TilePane
|
|
|