下面的代码包含两个Listview,用户将从第一个列表视图中选择一个名称,当点击add按钮时,它将将内容移动到第二个列表视图应该更新和显示的数组中。
我认为,通过将所选内容转换为字符串,然后将其添加到数组中,我们有了正确的想法。但是,当试图打印用于测试目的的数组时,什么都不会出现。
任何反馈或帮助都将不胜感激。
package poolproject;
import java.net.URL;
import java.util.ArrayList;
import java.util.ResourceBundle;
import javafx.beans.value.ChangeListener;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.event.ActionEvent;
import javafx.fxml.FXML;
import javafx.fxml.Initializable;
import javafx.scene.control.Button;
import javafx.scene.control.ListView;
/**
*
* @author Alex
*/
public class FXMLDocumentController implements Initializable {
@FXML
private Button BtnAdd;
@FXML
private ListView<String> boxTeam;
@FXML
private ListView<String> boxPlayers;
ArrayList<String> team= new ArrayList();
String player;
final ObservableList<String> playersAvailable = FXCollections.observableArrayList(
"Kardi","Gilmore","Clark");
final ObservableList<String> teamOutput = FXCollections.observableArrayList(team);
@FXML
private void deleteAction(ActionEvent action){
int selectedItem = boxPlayers.getSelectionModel().getSelectedIndex();
player = Integer.toString(selectedItem);
team.add(player);
playersAvailable.remove(selectedItem);
}
@Override
public void initialize(URL url, ResourceBundle rb) {
boxPlayers.setItems(playersAvailable);
boxTeam.setItems(teamOutput);
}
}
发布于 2014-11-24 16:00:59
将项添加到纯文本列表不会引发更新( ArrayList
没有注册任何侦听器的机制)。将项添加到ObservableList
将导致通知侦听器。
做
String selectedItem = boxPlayers.getSelectionModel().getSelectedItem();
playersAvailable.remove(selectedItem);
teamOutput.add(selectedItem);
https://stackoverflow.com/questions/27116106
复制相似问题