JAVAFX 2.0 How can i dynamically change the content in a scrollPane?

Yongan Wu picture Yongan Wu · Nov 20, 2012 · Viewed 15.9k times · Source

Im making a playlist in a scrollPane, but I want to change the content in the scrollPane when I load a new playlist. setContent() just adds content. How can I remove the old content in the scrollpane and insert my new text, ie. is there a way to do an "scrollpane.removeContent()"?

Answer

jewelsea picture jewelsea · Nov 20, 2012

Uluk is right.

scrollPane.setContent(node) already does exactly what you want (replaces existing content) and there is no need for a removeContent method as setContent(null) will remove any content in the scroll pane.


Here is a sample app to demonstrate this:

import javafx.application.Application;
import javafx.beans.property.*;
import javafx.event.*;
import javafx.scene.Scene;
import javafx.scene.control.*;
import javafx.scene.image.*;
import javafx.scene.layout.*;
import javafx.stage.Stage;

public class ScrollPaneReplace extends Application {
  public static void main(String[] args) { launch(args); }

  String[] imageLocs = { 
    "http://uhallnyu.files.wordpress.com/2011/11/green-apple.jpg",
    "http://i.i.com.com/cnwk.1d/i/tim/2011/03/10/orange_iStock_000001331357X_540x405.jpg",
    "http://smoothiejuicerecipes.com/pear.jpg"
  };
  ImageView[] images = new ImageView[imageLocs.length];

  @Override public void init() {
    for (int i = 0; i < imageLocs.length; i++) {
      images[i] = new ImageView(new Image(imageLocs[i], 200, 0, true, true));
    }
  }

  @Override public void start(Stage stage) {
    stage.setTitle("Healthy Choices");
    stage.getIcons().add(new Image("http://files.softicons.com/download/application-icons/pixelophilia-icons-by-omercetin/png/32/apple-green.png"));

    final ScrollPane scroll = new ScrollPane();
    scroll.setPrefSize(100, 100);

    final IntegerProperty curImageIdx = new SimpleIntegerProperty(0);
    scroll.setContent(images[curImageIdx.get()]);

    Button next = new Button("Next Image");
    next.setOnAction(new EventHandler<ActionEvent>() {
      @Override public void handle(ActionEvent t) {
        curImageIdx.set((curImageIdx.get() + 1) % 3);
        scroll.setContent(images[curImageIdx.get()]);
      }
    });

    Button remove = new Button("Remove Image");
    remove.setOnAction(new EventHandler<ActionEvent>() {
      @Override public void handle(ActionEvent t) {
        scroll.setContent(null);
      }
    });

    VBox controls = new VBox(10);
    controls.getChildren().setAll(next, remove);

    HBox layout = new HBox(10);
    layout.getChildren().setAll(controls, scroll);
    layout.setStyle("-fx-background-color: cornsilk; -fx-padding: 15;");
    HBox.setHgrow(scroll, Priority.ALWAYS);

    stage.setScene(new Scene(layout));
    stage.show();

    scroll.setHvalue(0.25); scroll.setVvalue(0.25);
  }
}

Sample images for different ScrollPane content settings:

applechoice orangechoice nochoice