按列值对ListView进行分组
创始人
2024-11-03 05:30:36
0

以下是一个示例代码,演示如何按列值对ListView进行分组:

import javafx.application.Application;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.control.ListCell;
import javafx.scene.control.ListView;
import javafx.scene.control.TextField;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
import javafx.util.Callback;

import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import java.util.TreeMap;

public class GroupedListViewDemo extends Application {

    private ListView listView;
    private TextField searchField;

    private Map> groupedItems = new TreeMap<>();

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

    @Override
    public void start(Stage primaryStage) {
        // 创建一些示例数据
        List items = new ArrayList<>();
        items.add(new GroupedItem("Group A", "Item 1"));
        items.add(new GroupedItem("Group A", "Item 2"));
        items.add(new GroupedItem("Group B", "Item 3"));
        items.add(new GroupedItem("Group B", "Item 4"));
        items.add(new GroupedItem("Group C", "Item 5"));
        items.add(new GroupedItem("Group C", "Item 6"));

        // 将数据按照分组放入Map中
        for (GroupedItem item : items) {
            if (!groupedItems.containsKey(item.getGroup())) {
                groupedItems.put(item.getGroup(), new ArrayList<>());
            }
            groupedItems.get(item.getGroup()).add(item);
        }

        // 创建ListView,并自定义ListCell来显示分组标题和项目
        listView = new ListView<>();
        listView.setCellFactory(new Callback, ListCell>() {
            @Override
            public ListCell call(ListView param) {
                return new ListCell() {
                    @Override
                    protected void updateItem(GroupedItem item, boolean empty) {
                        super.updateItem(item, empty);
                        if (empty || item == null) {
                            setText(null);
                            setGraphic(null);
                        } else {
                            if (item.isGroupHeader()) {
                                // 如果是分组标题,则设置为Label
                                Label label = new Label(item.getGroup());
                                setGraphic(label);
                            } else {
                                // 如果是项目,则设置为普通文本
                                setText(item.getItem());
                                setGraphic(null);
                            }
                        }
                    }
                };
            }
        });

        // 设置ListView的数据源
        ObservableList observableList = FXCollections.observableArrayList();
        for (String group : groupedItems.keySet()) {
            observableList.add(new GroupedItem(group, true));
            observableList.addAll(groupedItems.get(group));
        }
        listView.setItems(observableList);

        // 创建搜索框
        searchField = new TextField();
        searchField.textProperty().addListener((observable, oldValue, newValue) -> {
            // 根据搜索框的内容过滤ListView的数据源
            ObservableList filteredList = FXCollections.observableArrayList();
            for (String group : groupedItems.keySet()) {
                filteredList.add(new GroupedItem(group, true));
                for (GroupedItem item : groupedItems.get(group)) {
                    if (item.getItem().toLowerCase().contains(newValue.toLowerCase())) {
                        filteredList.add(item);
                    }
                }
            }
            listView.setItems(filteredList);
        });

        VBox root = new VBox(listView, searchField);
        Scene scene = new Scene(root, 300, 200);
        primaryStage.setScene(scene);
        primaryStage.show();
    }

    // 自定义分组项类
    private static class GroupedItem {
        private String group;
        private String item;
        private boolean isGroupHeader;

        public GroupedItem(String group, String item) {
            this.group = group;
            this.item = item;
            this.isGroupHeader = false;
        }

        public GroupedItem(String group, boolean isGroupHeader) {
            this.group = group;
            this.isGroupHeader = isGroupHeader;
        }

        public String getGroup() {
            return group;
        }

        public String getItem() {
            return item;
        }

        public boolean isGroupHeader() {
            return isGroupHeader;
        }
    }
}

在这个示例中,首先我们定义了一个GroupedItem类来表示分组项,其中包含了分组名称和项目名称,以及一个标志来表示是否为分组标题。

然后,我们创建了一个Map

相关内容

热门资讯

保存时出现了1个错误,导致这篇... 当保存文章时出现错误时,可以通过以下步骤解决问题:查看错误信息:查看错误提示信息可以帮助我们了解具体...
汇川伺服电机位置控制模式参数配... 1. 基本控制参数设置 1)设置位置控制模式   2)绝对值位置线性模...
不能访问光猫的的管理页面 光猫是现代家庭宽带网络的重要组成部分,它可以提供高速稳定的网络连接。但是,有时候我们会遇到不能访问光...
不一致的条件格式 要解决不一致的条件格式问题,可以按照以下步骤进行:确定条件格式的规则:首先,需要明确条件格式的规则是...
本地主机上的图像未显示 问题描述:在本地主机上显示图像时,图像未能正常显示。解决方法:以下是一些可能的解决方法,具体取决于问...
表格列调整大小出现问题 问题描述:表格列调整大小出现问题,无法正常调整列宽。解决方法:检查表格的布局方式是否正确。确保表格使...
表格中数据未显示 当表格中的数据未显示时,可能是由于以下几个原因导致的:HTML代码问题:检查表格的HTML代码是否正...
Android|无法访问或保存... 这个问题可能是由于权限设置不正确导致的。您需要在应用程序清单文件中添加以下代码来请求适当的权限:此外...
【NI Multisim 14...   目录 序言 一、工具栏 🍊1.“标准”工具栏 🍊 2.视图工具...
银河麒麟V10SP1高级服务器... 银河麒麟高级服务器操作系统简介: 银河麒麟高级服务器操作系统V10是针对企业级关键业务...