我正在尝试创建一个ComboBox,该ComboBox将显示所选图像的预览,但是ComboBox却显示了字符串值.
似乎唯一可行的方法是创建Node的ComboBox,但这会导致一旦选定的选项从下拉菜单中消失,如果有人有任何建议,将不胜感激.
我的代码如下:
String notOnLine = "file:Java1.png";
String onLine = "file:Java2.png";
ObservableList<String> options = FXCollections.observableArrayList();
options.addAll(notOnLine, onLine);
final ComboBox<String> comboBox = new ComboBox(options);
comboBox.setCellFactory(c -> new StatusListCell());
和ListCell:
public class StatusListCell extends ListCell<String> {
protected void updateItem(String item, boolean empty){
super.updateItem(item, empty);
setGraphic(null);
setText(null);
if(item!=null){
ImageView imageView = new ImageView(new Image(item));
imageView.setFitWidth(40);
imageView.setFitHeight(40);
setGraphic(imageView);
setText("a");
}
}
}
我希望在关闭列表后将图像显示在ComboBox本身中.现在,它只是显示URL(例如file:Java1.png).
解决方法:
您可以指定ComboBox的buttonCellProperty
:
comboBox.setButtonCell(new StatusListCell());
The button cell is used to render what is shown in the ComboBox
‘button’ area.