我正在尝试从列表视图中选择项目时执行一项操作(目前,我确实有一个comboBox可以工作,但是我想将其更改为listView或可以在其中显示可选项目的任何种类的东西列表的形式,如果您对其他控件有任何想法,我欢迎您
无论如何,我有一个带属性更改方法的listView,以便在从列表中选择一个项目时执行某些操作。我还有另一种刷新列表的方法。当我单击刷新按钮并尝试从列表中选择一个项目时,我得到一个指向lw.getSelectionModel()。getSelectedItem()的空指针。我已经尝试通过执行if语句来对此进行反击,但这是行不通的。
public void initialize(URL arg0, ResourceBundle arg1) {
if(arr != null || arr.length > 0) {
for(int i = 0; i<arr.length; i++) {
cmBox.getItems().add(arr[i]);
lw.getItems().add(arr[i]);
}
}
lw.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {
public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {
if(lw.getSelectionModel().getSelectedItem() == null) {
lw.getSelectionModel().selectFirst();
}
String selectedString = lw.getSelectionModel().getSelectedItem();
String[] conParts = selectedString.split("@");
String selectedConName = conParts[0];
number = conParts[1];
selectedName = selectedConName;
displayTF(selectedName);
}
});
}
为了进行比较,这是与comboBox配合使用的方法:
public void pickContact(ActionEvent event) {
if(cmBox.getSelectionModel().getSelectedIndex() == -1) {
return;
}
String selectedString = arr[cmBox.getSelectionModel().getSelectedIndex()];
String[] conParts = selectedString.split("@");
String selectedConName = conParts[0];
number = conParts[1];
selectedName = selectedConName;
displayTF(selectedName);
}
此外,这是刷新方法:
public void reloadCmBox(ActionEvent event) {
cmBox.getItems().clear();
arr = sqld.selectAll();
cmBox.setItems(FXCollections.observableArrayList(Arrays.asList(arr)));
cmBox.getSelectionModel().selectFirst();
lw.getItems().clear();
lw.setItems(FXCollections.observableArrayList(Arrays.asList(arr)));
cmBox.getSelectionModel().selectFirst();
}
如果您想知道,这是fxml文件:
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.ComboBox?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.ListView?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="409.0" prefWidth="535.0" xmlns="http://javafx.com/javafx/8.0.171" xmlns:fx="http://javafx.com/fxml/1" fx:controller="application.CVController">
<children>
<TextField fx:id="tf" layoutX="325.0" layoutY="75.0" />
<Button layoutX="325.0" layoutY="141.0" mnemonicParsing="false" onAction="#placeCall" text="Call" />
<Button fx:id="sendText" layoutX="367.0" layoutY="141.0" mnemonicParsing="false" onAction="#sendText" text="Text" />
<Button fx:id="OpenConEditor" layoutX="412.0" layoutY="141.0" mnemonicParsing="false" onAction="#openConEditer" text="Edit" />
<Button layoutX="458.0" layoutY="141.0" mnemonicParsing="false" onAction="#deleteCon" text="Delete" />
<Button fx:id="OpenConCreator" layoutX="483.0" layoutY="75.0" mnemonicParsing="false" onAction="#openConAdder" text="New" />
<ComboBox fx:id="cmBox" layoutX="93.0" layoutY="74.0" onAction="#pickContact" prefHeight="28.0" prefWidth="223.0" />
<Label layoutX="231.0" layoutY="20.0" prefHeight="28.0" prefWidth="149.0" text="Contacts View">
<font>
<Font size="20.0" />
</font>
</Label>
<Button fx:id="SDTomer" layoutX="77.0" layoutY="162.0" mnemonicParsing="false" onAction="#speedDial" text="Tomer" />
<Label layoutX="77.0" layoutY="133.0" text="Speed Dial">
<font>
<Font size="16.0" />
</font>
</Label>
<Button layoutX="46.0" layoutY="75.0" mnemonicParsing="false" onAction="#reloadCmBox" text="R" />
<ListView fx:id="lw" layoutX="153.0" layoutY="187.0" prefHeight="200.0" prefWidth="200.0" />
</children>
</AnchorPane>
答案 0 :(得分:0)
首先,您应避免进行将属性从侦听器修改为该属性的操作。叫selectFirst
就是这样。
还请注意,如果从null
列表中删除了所选项目,则可以将所选项目更改为items
。调用侦听器时可能没有选择的项目。最好的办法可能是简单地忽略这样的事件(或在检查非空项目列表以选择元素之后至少使用Platform.runLater
)。
您可以使用newValue
获取您收听的属性的更新值。
lw.getSelectionModel().selectedItemProperty().addListener(new ChangeListener<String>() {
public void changed(ObservableValue<? extends String> observable, String oldValue, String newValue) {
if(newValue != null) {
String[] conParts = newValue.split("@");
String selectedConName = conParts[0];
number = conParts[1];
selectedName = selectedConName;
displayTF(selectedName);
}
}
});