2

我在使用 JavaFX 中的 Scene Builder 创建的 FXML 文件创建 ComboBox 的自定义单元工厂时遇到以下问题:我创建了一个标签的自定义单元工厂。当用户单击项目时,它工作正常。y 显示在“按钮”区域中。但是当用户想要点击另一个项目时,之前点击的项目就消失了。 消失物品的图片

这是组合框单元工厂的代码:

idCardOnlineStatusComboBox.setCellFactory(new Callback<ListView<Label>, ListCell<Label>>() {
            @Override public ListCell<Label> call(ListView<Label> param) {
               final ListCell<Label> cell = new ListCell<Label>() {   
                    @Override public void updateItem(Label item, 
                        boolean empty) {
                            super.updateItem(item, empty);
                            if(item != null || !empty) {
                                setGraphic(item);
                            }
                        }
            };
            return cell;
        }
    });

我想电池工厂有问题,但我不知道它在哪里。

我使用以下代码从 fxml 中提取组合框:

@FXML private ComboBox idCardOnlineStatusComboBox;

然后我用这个填充组合框:

idCardOnlineStatusComboBox.getItems().addAll(
            new Label(Resource.getStringFor("MainForm.Pane.MenuBar.Vortex.OnlineStatus.Online.Title"), new ImageView(onlineImg)),
            new Label(Resource.getStringFor("MainForm.Pane.MenuBar.Vortex.OnlineStatus.Away.Title"), new ImageView(awayImg)),
            new Label(Resource.getStringFor("MainForm.Pane.MenuBar.Vortex.OnlineStatus.DoNotDisturb.Title"), new ImageView(doNotDisturbImg)),
            new Label(Resource.getStringFor("MainForm.Pane.MenuBar.Vortex.OnlineStatus.Invisible.Title"), new ImageView(offlineImg)),
            new Label(Resource.getStringFor("MainForm.Pane.MenuBar.Vortex.OnlineStatus.Offline.Title"), new ImageView(offlineImg))
            );
4

1 回答 1

2

消失的行为可能是一个错误。您可以将其提交给 JavaFX Jira,让 Oracle 人员进一步决定。此外,您可以调查导致ComboBox.setCellFactory(...)此行为的源代码并找到解决方法。但我的建议是使用 ComboBox Cell 的 ( ListCell) 内部Labelled组件,而不是您的:

@Override
public void updateItem(Label item, boolean empty) {
    super.updateItem(item, empty);
    if (item != null && !empty) {
        setText(item.getText());
        setGraphic(item.getGraphic());
    } else {
        setText(null);
        setGraphic(null);
    }
}

注意代码的 else 部分,在编写 if 语句时涵盖所有用例。

于 2013-09-14T14:44:16.837 回答