gpt4 book ai didi

java - 背景和按钮问题

转载 作者:行者123 更新时间:2023-11-30 02:02:19 26 4
gpt4 key购买 nike

运行此代码时遇到问题:

import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.layout.HBox;
import javafx.stage.Stage;
import javafx.scene.control.Label;
import javafx.scene.control.Button;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.text.Font;
import javafx.scene.text.Text;
import javafx.scene.Group;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.BackgroundSize;
import javafx.scene.layout.Background;
import javafx.scene.layout.BackgroundImage;
import javafx.scene.layout.BackgroundRepeat;
import javafx.scene.layout.BackgroundPosition;
import javafx.event.ActionEvent;

import java.io.FileInputStream;

public class Main extends Application {

@Override
public void start(Stage primaryStage) throws Exception {
BackgroundImage backgroundImage = new BackgroundImage( new Image( getClass().getResource("src/sample/Image/backg.jpg").toExternalForm()), BackgroundRepeat.NO_REPEAT, BackgroundRepeat.NO_REPEAT, BackgroundPosition.DEFAULT, BackgroundSize.DEFAULT);
Background background = new Background(backgroundImage);

Button button = new Button( "Click me!");
button.setBackground(background);

Scene scene = new Scene(backgroundImage, 600, 400);

primaryStage.setScene(scene);
primaryStage.show();
}



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

我正在尝试在背景上显示按钮,但尽管如此,我还是遇到了很多问题。我不太明白“场景”类是如何工作的,所以我觉得我在那里犯了错误。 我收到此错误消息:

Error:(38, 33) java: incompatible types: javafx.scene.layout.BackgroundImage cannot be converted to javafx.scene.Parent

38 和 33 分别是:

Background background = new Background(backgroundImage);
Scene scene = new Scene(backgroundImage, 600, 400);

谢谢

更新

在马特回应后,我尝试了他的代码并收到此错误消息:

    Exception in Application start method
java.lang.reflect.InvocationTargetException
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplicationWithArgs(LauncherImpl.java:473)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplication(LauncherImpl.java:372)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:564)
at java.base/sun.launcher.LauncherHelper$FXHelper.main(LauncherHelper.java:941)
Caused by: java.lang.RuntimeException: Exception in Application start method
at javafx.graphics/com.sun.javafx.application.LauncherImpl.launchApplication1(LauncherImpl.java:973)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication$2(LauncherImpl.java:198)
at java.base/java.lang.Thread.run(Thread.java:844)
Caused by: java.lang.NullPointerException
at sample.Main.start(Main.java:34)
at javafx.graphics/com.sun.javafx.application.LauncherImpl.lambda$launchApplication1$9(LauncherImpl.java:919)
at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runAndWait$11(PlatformImpl.java:449)
at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$9(PlatformImpl.java:418)
at java.base/java.security.AccessController.doPrivileged(Native Method)
at javafx.graphics/com.sun.javafx.application.PlatformImpl.lambda$runLater$10(PlatformImpl.java:417)
at javafx.graphics/com.sun.glass.ui.InvokeLaterDispatcher$Future.run(InvokeLaterDispatcher.java:96)
at javafx.graphics/com.sun.glass.ui.win.WinApplication._runLoop(Native Method)
at javafx.graphics/com.sun.glass.ui.win.WinApplication.lambda$runLoop$3(WinApplication.java:175)
... 1 more
Exception running application sample.Main

Process finished with exit code 1

最佳答案

在 javafx 中尝试一下,通常您希望将所有节点保存在容器中。查看我添加的评论

public class Main extends Application {

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

@Override
public void start(Stage primaryStage) {//Removed throws Exception
BackgroundImage backgroundImage = new BackgroundImage(
new Image( getClass().getResource("src/sample/Image/backg.jpg").toExternalForm()),
BackgroundRepeat.NO_REPEAT,
BackgroundRepeat.NO_REPEAT,
BackgroundPosition.DEFAULT,
BackgroundSize.DEFAULT);
Background background = new Background(backgroundImage);

Button button = new Button( "Click me!");
//button.setBackground(background);Not needed

VBox vBox = new VBox();//A container which holds all the nodes
vBox.setBackground(background);//Set the Container Background
vBox.getChildren().add(button);//Add Nodes

Scene scene = new Scene(vBox, 600, 400);//Parameters are Parent and width and height of your scene

primaryStage.setScene(scene);
primaryStage.show();
}
}

关于java - 背景和按钮问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52440555/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com