I am trying to fill ListView from the content of a simple ArrayList. Here is my
Controller.java file:
package design;
import java.net.URL;
import jav
If I see correctly, you actually don't use the URL and the ResourceBundle parameters in you initialize() method.
If the URL is the path to your fxml file, and the ResourceBundle contains internatonalization properties for your GUI, then you should define your initialize() method without parameters, but annotated with @FXML. The URL and the ResourceBundle should be passed to the FXMLLoader.
Like
FXMLLoader loader = new FXMLLoader(URL, rb);
and
@FXML
private void initialize() { ... }
This way initialize() will be automatically invoked.