我的代码包含两个类,一个是MainGUI.java和Screen.java 我打算为不同的屏幕制作不同的类,并在需要时渲染它们
这是我对 MainGUI.java
的当前代码import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.layout.Pane;
import javafx.stage.Stage;
public class MainGUI extends Application{
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage pStage) throws Exception {
Screen firstScreen = new Screen();
Scene mainScene = new Scene(firstScreen );
pStage.setScene(mainScene);
pStage.setTitle("TestProg");
pStage.show();
}
}
这是Screen.java的代码
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
public class Screen extends VBox{
private final Label L1 = new Label("Label 1");
private final Label L2 = new Label("Label 2");
private final TextField F1 = new TextField();
private final TextField F2 = new TextField();
private final Button B1 = new Button("This is a button");
Screen(){
super();
showStuff();
}
private void showStuff(){
this.setSpacing(5);
this.setAlignment(Pos.CENTER);
this.setPadding(new Insets(10,0,0,10));
HBox Box1 = new HBox(L1,F1);
HBox Box2 = new HBox(L2,F2);
this.getChildren().addAll(Box1,Box2,B1);
}
}
这是运行代码后获得的GUI的屏幕截图:
我不知道哪些信息会有所帮助,但我正在使用 jre1.8.0_25
从图像中可以看出,表格没有正确显示文字,下面还有一个灰色矩形。
答案 0 :(得分:4)
用户报告通过命令行选项绕过硬件渲染管道修复了系统上的问题:
-Dprism.order=sw
请注意(从Java 8开始),上述命令行开关是Oracle JavaFX运行时的未记录且不受支持的功能。
请参阅:
我之前在StackOverflow上看过为JavaFX应用发布的类似图片(虽然我无法找到重复的问题)。我永远无法复制图像,也无法确切知道是什么原因造成的。可能,该应用程序运行在JavaFX不支持的过时视频卡或视频卡驱动程序上。