我正在使用javafx多种输入类型的Java项目上工作,但是由于我在图像上使用了带有images(ImageView)的标签,因此我遇到了勒死的ComboBox行为。

1-组合框显示为白色!但我需要黑色。

java - JavaFX:单击时ComboBox单元消失-LMLPHP

2-每次我选择一个项目。

java - JavaFX:单击时ComboBox单元消失-LMLPHP
java - JavaFX:单击时ComboBox单元消失-LMLPHP

3-它消失了!!!

java - JavaFX:单击时ComboBox单元消失-LMLPHP
java - JavaFX:单击时ComboBox单元消失-LMLPHP

这是我的代码:

...
import javafx.scene.control.ComboBox;
import javafx.scene.image.ImageView;

ImageView img_tun = new ImageView("images/icones/flag/Tunisia.png");
Label lbl_tun=new Label("1",img_tun);
ImageView img_fr = new ImageView("images/icones/flag/France.png");
Label lbl_fr=new Label("2",img_fr);
ImageView img_aut = new ImageView("images/icones/flag/World.png");
Label lbl_aut=new Label("3",img_aut);

optionsnat=FXCollections.observableArrayList(lbl_tun,lbl_fr,lbl_aut);

@FXML
ComboBox<Label> cb_nat = new ComboBox<Label>();

private String nat="1";

...

@Override
public void initialize(URL location, ResourceBundle resources) {

...

cb_nat.getSelectionModel().selectedIndexProperty().addListener(new ChangeListener<Number>() {
            @Override
              public void changed(ObservableValue<? extends Number> observableValue, Number number,  Number number2) {
                if(cb_nb.getItems().get((Integer) number2)=="1"){setNat("1");}
                else if(cb_nb.getItems().get((Integer) number2)=="2"){setNat("2");}
                else if(cb_nb.getItems().get((Integer) number2)=="3"){setNat("3");}
                else{System.err.println("Erreur lors de changement de nation..");}
              }
            });
    }
...


code.fxml

<ComboBox fx:id="cb_nat" layoutX="40.0" layoutY="265.0" prefWidth="150.0" />




编辑:

阅读了此Article之后,我知道我的方法完全是错误的,强烈不建议这样做。.如果有人有其他想法在BomboBox中放置bnation标志,请帮忙!

谢谢。(对不起,我的英语不好)

最佳答案

导致此问题的原因是,当您选择ListCell时,ComboBox将其项(在我们的情况下为Label)从ListCell(项observableList)移动到ButtonCell,ButtonCell是默认情况下为空的小框。但是,我们都知道,任何Node对象都不能在同一场景内的任何位置放置两次,并且由于ListCell类没有克隆函数,因此javafx将其从最后一个位置删除到新位置,即ButtonCell。

解决方法是添加字符串
列表中的项目,并提供一个单元工厂以在单元工厂内创建标签节点。创建一个名为“ StringImageCell”的类,然后执行以下操作:


您需要设置cellFactory属性:
cb_nat.setCellFactory(listview -> new StringImageCell());
您需要设置buttonCell属性:cb_nat.setButtonCell(newStringImageCell());


这是一个例子:

     public class ComboBoxCellFactory extends Application {

        @Override
        public void start(Stage stage) throws Exception {
            ComboBox<String> comboBox = new ComboBox<>();
            comboBox.getItems().addAll("1", "2", "3");
            //Set the cellFactory property
            comboBox.setCellFactory(listview -> new StringImageCell());
            // Set the buttonCell property
            comboBox.setButtonCell(new StringImageCell());
            BorderPane root = new BorderPane();
            root.setCenter(comboBox);
            Scene scene = new Scene(root, 600, 600);
            stage.setScene(scene);
            stage.show();

        }

        //A Custom ListCell that displays an image and string
        static class StringImageCell extends ListCell<String> {

            Label label;
            static HashMap<String, Image> pictures = new HashMap<>();

            @Override
            protected void updateItem(String item, boolean empty) {
                super.updateItem(item, empty);
                if (item == null || empty) {
                    setItem(null);
                    setGraphic(null);
                } else {
                    setText(item);
                    ImageView image = getImageView(item);
                    label = new Label("",image);
                    setGraphic(label);
                }
            }

        }

        private static ImageView getImageView(String imageName) {
            ImageView imageView = null;
            switch (imageName) {
                case "1":
                case "2":
                case "3":
                    if (!pictures.containsKey(imageName)) {
                    pictures.put(imageName, new Image(imageName + ".png"));
                    }
                    imageView = new ImageView(pictures.get(new Image(imageName + ".png")));
                    break;
                default:
                    imageName = null;
            }
            return imageView;
        }

        public static void main(String[] args) {
            launch(args);
        }

    }

关于java - JavaFX:单击时ComboBox单元消失,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/32362802/

10-10 09:36