How to fire an event when scrolling up, javafx

I am developing a chat application in java and I want to use the function used by facebook to retrieve the chat history when the user scrolls up. I tried the "on scroll" action, which fires every time you scroll up or down the scroll bar. Now I want to fire the Fire action event only when the scrollbar reaches the top, like in facebook chat box.

+3


source to share


2 answers


Here's an example of what you want. Hope this helps you.



import javafx.application.Application;
import javafx.beans.value.ChangeListener;
import javafx.beans.value.ObservableValue;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.ScrollPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;

public class ScrollUtil extends Application 
{
    private boolean scrollToBottom = false;
    private boolean scrollToTop = false;

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

    @Override
    public void start(final Stage stage) throws Exception 
    {

        final VBox root = new VBox();
        final ScrollPane scrollPane = new ScrollPane();

        final VBox vBox = new VBox();
        vBox.setAlignment(Pos.BOTTOM_CENTER);

        scrollPane.setContent(vBox);

        scrollPane.setHbarPolicy(ScrollPane.ScrollBarPolicy.NEVER);

        Button button = new Button("add");
        Button button3 = new Button("scroll up");

        button3.setOnAction(new EventHandler<ActionEvent>() 
        {
            @Override
            public void handle(ActionEvent actionEvent) 
            {
                scrollToTop = true;
                 scrollPane.setVvalue(scrollPane.getVmin());
                System.out.println("vmin= "+scrollPane.getVmin() + "; vmax = " + scrollPane.getVmax() + "; vvalue" + scrollPane.getVvalue());
            }
        });

        button.setOnAction(new EventHandler<ActionEvent>() 
        {
            @Override
            public void handle(ActionEvent actionEvent) 
            {
                vBox.getChildren().add(new Label("hallo"));
                scrollToBottom = true;
                //System.out.println(scrollPane.getVmin() + "; max = " + scrollPane.getVmax() + "; " + scrollPane.getVvalue());
            }
        });

        scrollPane.setVvalue(scrollPane.getVmax());
        scrollPane.vvalueProperty().addListener(new ChangeListener<Number>() 
        {
          @Override
          public void changed(ObservableValue<? extends Number> observable, Number oldValue, Number newValue) 
          {
            if(scrollToBottom)
            {
              scrollPane.setVvalue(scrollPane.getVmax());
              scrollToBottom = false;
            }

            if(newValue.doubleValue() ==0)
            {
                vBox.getChildren().add(new Label("hallo"));
                System.out.println("min value ="+scrollPane.getVmin());
                //scrollPane.setVvalue(scrollPane.getVmin());
                scrollToTop = true;
                System.out.println("now get the chat history");
            }
          }
        });

        Button button2 = new Button("scroll");
        button2.setOnAction(new EventHandler<ActionEvent>() 
        {
            @Override
            public void handle(ActionEvent actionEvent) 
            {
                scrollPane.setVvalue(Double.MAX_VALUE);
            }
        });

        root.getChildren().addAll(scrollPane, button, button2, button3);
        Scene scene = new Scene(root);
        stage.setScene(scene);
        stage.show();
    }
}

      

+1


source


Assuming you have it ScrollPane

, you can watch it vvalueProperty

:

scrollPane.vvalueProperty().addListener(
    (ObservableValue<? extends Number> observable, Number oldValue, Number newValue) -> {
    if(newValue.doubleValue() == 0){
        System.out.println( "AT TOP" );
        // load more items
    }
});

      

and you can also scroll to the bottom with



scrollPane.setVvalue( scrollPane.getVmax() );

      

at the initial stage.

+1


source







All Articles