2012-03-24 56 views
6

Estoy tratando de configurar una imagen como el fondo usando este código:Ajuste fondo de la imagen con el código javafx (no CSS)

root.setStyle("-fx-background-image: url('splash.jpg'); 
       -fx-background-position: center center; 
       -fx-background-repeat: stretch;"); 

Pero no funciona. Si lo fijo con CSS, funciona perfectamente:

root.setId("pane"); 
primaryStage.getScene().getStylesheets().add(JavaFXApplication9.class.getResource("style.css").toExternalForm()); 

y CSS:

#pane{ 
    -fx-background-image: url('splash.jpg'); 
    -fx-background-repeat: stretch; 
    -fx-background-position: center center; 
} 

Todos mis archivos (clase principal, CSS y de imagen) colocados en el mismo paquete.

Entonces, ¿cómo puedo establecer la imagen de fondo utilizando el código? O bien, ¿cómo puedo anular (reemplazar) las líneas sobre la imagen de fondo de algún elemento en CSS del código de la aplicación? ¡Gracias!

Respuesta

12

tratar a continuación:

String image = JavaFXApplication9.class.getResource("splash.jpg").toExternalForm(); 
root.setStyle("-fx-background-image: url('" + image + "'); " + 
      "-fx-background-position: center center; " + 
      "-fx-background-repeat: stretch;"); 
+2

¡Gracias, funciona!) – Gleb

9

Si realmente no quieren usar CSS o el método setStyle(), puede utilizar el siguiente:

// new Image(url) 
Image image = new Image(CurrentClass.class.getResource("/path/to/package/bg.jpg")); 
// new BackgroundSize(width, height, widthAsPercentage, heightAsPercentage, contain, cover) 
BackgroundSize backgroundSize = new BackgroundSize(100, 100, true, true, true, false); 
// new BackgroundImage(image, repeatX, repeatY, position, size) 
BackgroundImage backgroundImage = new BackgroundImage(image, BackgroundRepeat.REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.CENTER, backgroundSize); 
// new Background(images...) 
Background background = new Background(backgroundImage); 

Puede encontrar documentación detallada sobre BackgroundImagehere .

(Siento responder a esta pregunta anterior)

Cuestiones relacionadas