7

我是 FXML 新手,我正在构建一个应用程序。现在我遇到了一个我无法解决的问题。

我在 FXML 中定义了一个组合框,并在控制器类中创建了必要的关联。但我想将图像添加到这个组合框。

经过数小时的谷歌搜索后,我仍然无法解决这个问题。

你们能帮我举一个“简单”的例子来说明如何达到我的目标吗?

非常感谢!

我当前的代码是:(确保有更简单的方法可以做到这一点,但它有效!)

ImageView img1 = new ImageView("Layout/nl.png");
ImageView img2 = new ImageView("Layout/en.png");

AnimalBoxLanguage.getItems().addAll(img1, img2);

AnimalBoxLanguage.setCellFactory(new Callback<ListView<ImageView>, ListCell<ImageView>>() {
    @Override 
    public ListCell<ImageView> call(ListView<ImageView> p) {
        return new ListCell<ImageView>() {
            private final ImageView rectangle;
            { 
                setContentDisplay(ContentDisplay.GRAPHIC_ONLY); 
                rectangle = new ImageView();
            }

            @Override 
            protected void updateItem(ImageView item, boolean empty) {
                super.updateItem(item, empty);

                if (item == null || empty) {
                    setGraphic(null);
                } else {
                    rectangle.setImage(item.getImage());
                    setGraphic(rectangle);
                }
            }
        };
    }
});
4

3 回答 3

5

以他评论中链接的示例erhun 为起点,在 fxml 中定义 ComboBox 如下所示,以便组合框项目包括带有图形的标签(这些是您的“图标”)。

<ComboBox fx:id="fruitCombo" layoutX="15.0" layoutY="33.0" prefWidth="90.0" promptText="choose">
  <items>
    <FXCollections fx:factory="observableArrayList">
      <Label text="Apple">
        <graphic> 
          <StackPane prefWidth="50">
            <ImageView fitHeight="32" preserveRatio="true">
              <image>
                <Image url="http://uhallnyu.files.wordpress.com/2011/11/green-apple.jpg" preserveRatio="false" smooth="false" />
              </image>
            </ImageView>
          </StackPane>  
        </graphic>  
      </Label>  
      <Label text="Pear">
        <graphic> 
          <StackPane prefWidth="50">
            <ImageView fitHeight="32" preserveRatio="true">
              <image>
                <Image url="http://smoothiejuicerecipes.com/pear.jpg" preserveRatio="false" smooth="false" />
              </image>
            </ImageView>
          </StackPane>  
        </graphic>  
      </Label>  
      <Label text="Orange">
        <graphic> 
          <StackPane prefWidth="50">
            <ImageView fitHeight="32" preserveRatio="true">
              <image>
                <Image url="http://i.i.com.com/cnwk.1d/i/tim/2011/03/10/orange_iStock_000001331357X_540x405.jpg" preserveRatio="false" smooth="false" />
              </image>
            </ImageView>
          </StackPane>  
        </graphic>  
      </Label>  
    </FXCollections>
  </items>
</ComboBox>

在 FruitComboController 的初始化方法中,为按钮设置一个自定义单元格(下面的简单单元格只获取所选项目的文本,但如果您喜欢也可以包含图形):

ListCell<Label> buttonCell = new ListCell<Label>() {
  @Override protected void updateItem(Label item, boolean isEmpty) {
    super.updateItem(item, isEmpty);
    setText(item == null ? "" : item.getText());        
  }
};
fruitCombo.setButtonCell(buttonCell);

以上只是执行此操作的一种方法。或者(也许最好)你可以为你定义一个细胞工厂,ComboBox正如塞巴斯蒂安在他的回答中指出的那样。

修改样本的输出:

图标组合样本

于 2013-01-17T23:21:37.423 回答
4

您需要自定义 ComboBox 的CellFactory以保持框中项目的可视化。请参阅此链接以获取简短示例。

要使图像在控制区域中可见(选择一项后),您必须将组合框的按钮单元格设置为您的单元格之一。JavaFX 将相应地自动更新它们。基本上,当您使用自定义 cellfactory 设置组合框时,您需要做的是:

mycombobox.setButtonCell(myCellFactory.call(null));

另请查看有关此的文档

于 2013-01-15T08:47:44.767 回答
1
ObservableList options = FXCollections.observableArrayList();
//
Image img = new Image("/images/auto32.png");
ImageView imgView = new ImageView();
imgView.setImage(img);
//
Label lbl = new Label("test");
lbl.setGraphic(imgView);
// 
options.add(lbl);
options.add(lbl);
options.add(lbl);
//
myCombo.setItems(options);
于 2014-11-13T09:21:28.640 回答