我正在尝试制作一个包含大量项目(超过10000个)的组合框。它初始化没有问题。但是当我单击它时,它就冻结了。为了调试,我创建了自己的listCell并遵循了updateitem函数。当我单击时,它会无限次调用updateitem。它不应该只更新可见项目吗?这是一个示例控制器:

   package sample;

import javafx.fxml.FXML;
import javafx.scene.control.ComboBox;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;


public class Controller {
    @FXML
    ComboBox comboBox1;

    public final class ExampleCell<T> extends ListCell<T> {

        Label myLabel;

        @Override
        protected void updateItem(T item, boolean empty) {
            super.updateItem(item,empty);
            System.out.println("update");
            if (empty) {
                setGraphic(null);
            } else {
                if(myLabel==null){
                    myLabel=new Label((String)item);

                }else{
                    myLabel.setText((String)item);}
                setGraphic(myLabel);
            }
        }
    }
    public void initialize(){

    for(int i =0;i<10000;i++){
        comboBox1.getItems().add("example");
    }
    comboBox1.setCellFactory(param -> new ExampleCell<>());
   }
}


还有我的fxml

<?import javafx.scene.layout.GridPane?>

<?import javafx.scene.control.ComboBox?>
<GridPane fx:controller="sample.Controller"
          prefWidth="500"
          prefHeight="500"
          xmlns:fx="http://javafx.com/fxml" alignment="center" hgap="10" vgap="10">
    <ComboBox
            fx:id="comboBox1"
    />
</GridPane>

最佳答案

原因的确是对所有单元格的首选项宽度的测量,如ComboBoxListViewSkin中所述(不是公开的!):

// By default we measure the width of all cells in the ListView. If this
// is too burdensome, the developer may set a property in the ComboBox
// properties map with this key to specify the number of rows to measure.
// This may one day become a property on the ComboBox itself.
private static final String COMBO_BOX_ROWS_TO_MEASURE_WIDTH_KEY = "comboBoxRowsToMeasureWidth";


解决方法是限制应测量的行数-不保证,因为没有公共文档根本没有规范:

comboBox1.getProperties().put("comboBoxRowsToMeasureWidth", 10);


最初仍然多次调用updateItem,这至少是测量(填充和释放)过程中给定限制的两倍,再加上一次用于设置实际值。

08-05 18:52