我正在查看有关javafxports技术的信息,我是否可以在此项目中使用FXML文件。
这是我的build.gradle:
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'org.javafxports:jfxmobile-plugin:1.1.0'
}
}
apply plugin: 'org.javafxports.jfxmobile'
repositories {
jcenter()
maven {
url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}
mainClassName = 'com.orden.First'
dependencies {
compile 'com.gluonhq:charm:4.0.0'
// Desktop SQL -> https://github.com/xerial/sqlite-jdbc
desktopRuntime 'org.xerial:sqlite-jdbc:3.8.11.2'
embeddedRuntime 'com.gluonhq:charm-down-plugin-storage-desktop:3.0.0'
// Embedded SQL -> https://github.com/xerial/sqlite-jdbc
embeddedRuntime 'org.xerial:sqlite-jdbc:3.7.2'
// Android SQL -> https://github.com/SQLDroid/SQLDroid
androidRuntime 'org.sqldroid:sqldroid:1.0.3'
// ios SQL -> https://github.com/robovm/robovm 1.8
}
jfxmobile {
downConfig {
version = '3.0.0'
plugins 'display', 'lifecycle', 'statusbar', 'storage'
}
android {
manifest = 'src/android/AndroidManifest.xml'
androidSdk = 'C:/Program Files (x86)/Android/android-sdk/'
}
ios {
infoPList = file('src/ios/Default-Info.plist')
forceLinkClasses = [
'com.gluonhq.**.*',
'javax.annotations.**.*',
'javax.inject.**.*',
'javax.json.**.*',
'org.glassfish.json.**.*',
'SQLite.**.*'
]
}
embedded {
remotePlatforms {
raspberry {
host = '192.168.1.10'
username = 'pi'
password = 'raspberry'
workingDir = '/home/pi/Gluon'
jreLocation = '/usr/lib/jvm/jdk-8-oracle-arm32-vfp-hflt'
execPrefix = 'sudo'
}
}
}
}
这是我的javaFX第一页代码:
package com.orden;
import java.io.File;
import java.net.URL;
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.geometry.Rectangle2D;
import javafx.scene.Scene;
import javafx.scene.control.Label;
import javafx.scene.image.Image;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.StackPane;
import javafx.stage.Screen;
import javafx.stage.Stage;
public class First extends Application {
public void start(Stage primaryStage) {
try {
URL url = new File("src/main/java/com/orden/views/MainWindowFXML.fxml").toURL();
URL url2 = new File("src/main/java/com/orden/views/application.css").toURL();
AnchorPane root = (AnchorPane)FXMLLoader.load(url);
Scene scene = new Scene(root);
scene.getStylesheets().add(url2.toExternalForm());
primaryStage.setScene(scene);
primaryStage.show();
primaryStage.setTitle("Image saver");
primaryStage.setResizable(true);
} catch(Exception e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
launch(args);
}
}
我们可以看到我使用FXML文件来定义我的所有图形结构(控件等)。一切都编译好了。我也可以使用Android OS在smartfon上创建.apk文件并运行我的应用程序。问题是,当我启动应用程序时,我只看到黑屏,没有别的。
如果有人知道如何解决这个问题我会在任何提示上公开。 我需要一步一步解决问题,因为胶子插件配置很难。
下面我展示了我的文件树:
答案 0 :(得分:0)
URL url = getClass().getResource("views/MainWindowFXML.fxml");
URL url2 = getClass().getResource("views/application.css");
或
URL url = getClass().getResource("/com/orden/views/MainWindowFXML.fxml");
URL url2 = getClass().getResource("/com/orden/views/application.css");
或
URL url = getClass().getClassLoader().getResource("com/orden/views/MainWindowFXML.fxml");
URL url2 = getClass().getClassLoader().getResource("com/orden/views/application.css");