/* * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. */ import java.util.ArrayList; import java.util.List; import javafx.application.Application; import javafx.collections.FXCollections; import javafx.collections.ObservableList; import javafx.event.ActionEvent; import javafx.event.EventHandler; import javafx.scene.Scene; import javafx.scene.control.Button; import javafx.scene.control.ListView; import javafx.scene.control.SelectionMode; import javafx.scene.layout.VBox; import javafx.stage.Stage; /** * * @author akouznet */ public class Bug extends Application { /** * @param args the command line arguments */ public static void main(String[] args) { launch(args); } @Override public void start(Stage stage) { List list = new ArrayList(); ObservableList fxList = FXCollections.observableList(list); list.add("A"); list.add("B"); list.add("C"); final ListView listView = new ListView(fxList); // listView.getSelectionModel().setSelectionMode(SelectionMode.MULTIPLE); Button button = new Button("Remove"); button.setOnAction(new EventHandler() { @Override public void handle(ActionEvent t) { ObservableList selectedItems = listView.getSelectionModel().getSelectedItems(); System.out.println("selectedItems = " + selectedItems); List list = new ArrayList<>(selectedItems); listView.getItems().removeAll(list); } }); VBox vBox = new VBox(); vBox.getChildren().setAll(listView, button); stage.setScene(new Scene(vBox)); stage.show(); } }