JavaFX ListView是JavaFX框架中的一个控件,用于显示一个垂直列表,其中的每个列表项都可以包含自定义的内容。在ListView中,每个列表项由一个ListCell表示。
对于无法向ListCell添加标签的问题,可能是由于没有正确设置ListCell的内容。要向ListCell添加标签,可以通过重写ListCell的updateItem方法来实现。在updateItem方法中,可以创建一个Label,并将其设置为ListCell的内容。
以下是一个示例代码,演示如何向ListView的ListCell添加标签:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class ListViewExample extends Application {
@Override
public void start(Stage primaryStage) {
ListView<String> listView = new ListView<>();
listView.setCellFactory(param -> new ListCell<String>() {
@Override
protected void updateItem(String item, boolean empty) {
super.updateItem(item, empty);
if (empty || item == null) {
setText(null);
setGraphic(null);
} else {
Label label = new Label(item);
setGraphic(label);
}
}
});
listView.getItems().addAll("Item 1", "Item 2", "Item 3");
VBox root = new VBox(listView);
Scene scene = new Scene(root, 200, 200);
primaryStage.setScene(scene);
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
在这个示例中,我们通过setCellFactory方法设置了ListView的ListCell工厂,重写了ListCell的updateItem方法。在updateItem方法中,如果列表项为空或者为null,我们将ListCell的内容设置为null;否则,我们创建一个Label,并将其设置为ListCell的内容。
这样,ListView中的每个列表项都会显示一个标签。
腾讯云相关产品和产品介绍链接地址:
领取专属 10元无门槛券
手把手带您无忧上云