JavaFX ScrollPane setVvalue() 未按预期工作

标签 java javafx scrollpane

在我的应用程序中,我有一个带有 VBox 的 ScrollPane,它可能包含 0 到 1000 个 Pane ,每个 Pane 的高度设置为 90。每个 Pane 都有相关的项目,可以从内部的按钮加载,该按钮清除 VBox 并添加其子项,以及加载前一个列表的“返回结果”按钮,并应返回到 ScrollPane 中的同一位置。但是,setVvalue() 似乎不起作用。 Pane 及其子 Pane 属于同一类。

package application;

import java.util.ArrayList;
import java.util.List;

import javafx.application.Application;
import javafx.application.Platform;
import javafx.geometry.Pos;
import javafx.stage.Stage;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ScrollPane;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;


public class Main extends Application {

    public VBox resultsBox;
    public ScrollPane scroll;
    public List<CustomClass> results = new ArrayList<CustomClass>();
    public Button returnToResults;

    public class CustomClass extends HBox {
        public List<CustomClass> items;

        public boolean hasItems() {
            return items != null && !items.isEmpty();
        }

        public CustomClass(String text, boolean hasItems) {
            setMinHeight(90);
            setPrefHeight(90);
            setMaxHeight(90);
            setMaxWidth(Double.MAX_VALUE);
            setAlignment(Pos.CENTER);
            setStyle("-fx-border-color: red");

            Button children = new Button("View Children "+text);
            children.setDisable(!hasItems);
            getChildren().add(children);
            children.setOnAction(e -> {
                viewChildren(this);
            });

            if(hasItems) {
                items = new ArrayList<CustomClass>();
                for(int i=0; i<10; i++) {
                    items.add(new CustomClass(text+"."+i, false));
                }
            }
        }
    }

    public double vValue = 0.0;

    public void viewChildren(CustomClass cc) {
        Platform.runLater(() -> {
            vValue = scroll.getVvalue();
            System.out.println("0. "+vValue);
            resultsBox.getChildren().clear();
            resultsBox.getChildren().addAll(cc.items);
            returnToResults.setDisable(false);
        });
    }

    public void returnToResults() {
        Platform.runLater(() -> {
            resultsBox.getChildren().clear();
            resultsBox.getChildren().addAll(results);
            System.out.println("1. "+vValue+"    "+scroll.getVvalue());
            scroll.setVvalue(vValue);
            System.out.println("2. "+vValue+" -> "+scroll.getVvalue()); // Sets correctly.
            returnToResults.setDisable(true);
        });
    }

    public void start(Stage stage) throws Exception {

        resultsBox = new VBox(5);
        resultsBox.setFillWidth(true);
        resultsBox.setAlignment(Pos.TOP_CENTER);

        scroll = new ScrollPane(resultsBox);
        scroll.setMaxWidth(Double.MAX_VALUE);
        scroll.setFitToWidth(true);

        for(int i=0; i<100; i++) {
            results.add(new CustomClass("#"+i, true));
        }

        resultsBox.getChildren().addAll(results);

        returnToResults = new Button("Return to Results");
        returnToResults.setStyle("-fx-base: green");
        returnToResults.setDisable(true);
        returnToResults.setOnAction(e -> {
            returnToResults();
        });

        BorderPane root = new BorderPane();
        root.setCenter(scroll);
        root.setBottom(returnToResults);

        Scene scene = new Scene(root,400,400);
        stage.setScene(scene);
        stage.show();
    }

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

setVvalue() 起作用并在打印时将 ScrollPane 更改回其旧值,但 ScrollPane 本身不会去任何地方并停留在顶部。它与在 VBox 中删除和添加节点有关吗?为什么设置 Vvalue 时 ScrollPane 不移动?

最佳答案

当您调用scroll.setVvalue(vValue)时,滚动 Pane 尚未执行布局,因为其内容已更改,因此尚未“重新测量”其内容的大小。因此,通过在先前布局的上下文中解释 vvalue 来重新定位滚动条“thumb”。您可以使用以下方法修复此问题

public void returnToResults() {
    Platform.runLater(() -> {
        vbox.getChildren.clear();
        vbox.getChildren.addAll(results);

        scroll.layout();

        scroll.setVvalue(vValue); 
        returnToResults.setDisable(true);
    });
}

旁白:这些方法是从后台线程调用的吗?为什么它们的内容包含在 Platform.runLater(...) 中?

关于JavaFX ScrollPane setVvalue() 未按预期工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41534418/

相关文章:

JavaFX:将 SimpleLongProperty 绑定(bind)到标签并将长值格式化为人类可读的文件大小

JavaFX ScrollPane 以编程方式移动视口(viewport) - 居中内容

java - 将 JRadioSelection 传递给 ActionLIstener 类

java - 获取JChart2D中光标的坐标

java - 扩展 MultipleSelectionModel 的 JFX ComboBox UI

JavaFX - 如何在单击按钮时以编程方式滚动 ScrollPane?

css - 如何使 ScrollPanel 仅在其内部小部件高于它时可见,而当其内部小部件低于它时不可见?

java - 未触发 JDBC Microsoft SQL 超时

java - 菜鸟需要帮助如何退出我的 Java 程序

java - 如何添加动画以最小化 JavaFX?