这是使用javafx(使用javafxports和gluon-mobile)进行Android应用开发的新手。我是否使用gluon-Api通过扩展MobileApplication类来构建项目。使用sample programs。我试图创建自己的版本。但是,在App启动之初,我却得到了这个不需要的对话框。
我正在谈论不断出现在应用启动时的对话框。
这是我的代码。我扩展了MobileApplication类,以基于samples创建自己的App版本。
package com.gluonapplication;
import com.gluonapplication.views.Home;
import com.gluonhq.charm.glisten.application.MobileApplication;
import static com.gluonhq.charm.glisten.application.MobileApplication.HOME_VIEW;
/**
*
* @author Guru
*/
public class MainApplication extends MobileApplication {
public void init()
{
addViewFactory(HOME_VIEW,() -> new Home(HOME_VIEW).getView());
}
public void postinit()
{
}
public void start()
{
}
}
这是Home类,它返回应用程序的主视图。
包com.gluonapplication.views;
import com.gluonhq.charm.glisten.mvc.View;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
import javafx.fxml.FXMLLoader;
/**
*
* @author Guru
*/
public class Home {
View view;
String name;
public Home(String name)
{
this.name=name;
}
public View getView()
{
try
{
view=FXMLLoader.load(Home.class.getResource("HomeView.fxml"));
view.setName(name);
}
catch (IOException ex)
{
Logger.getLogger(Home.class.getName()).log(Level.SEVERE, null, ex);
ex.printStackTrace();
return new View(name);
}
return view;
}
}
这是HomeView.fxml文件,其根目录为View。
<?xml version="1.0" encoding="UTF-8"?>
<?import com.gluonhq.charm.glisten.mvc.View?>
<?import com.jfoenix.controls.JFXButton?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.VBox?>
<View prefHeight="600.0" prefWidth="350.0" xmlns="http://javafx.com/javafx/8.0.111" xmlns:fx="http://javafx.com/fxml/1">
<center>
< VBox alignment="CENTER" prefHeight="200.0" prefWidth="100.0" spacing="15" BorderPane.alignment="CENTER">
<children>
<Label text="Welcome Back!" />
<AnchorPane prefHeight="254.0" prefWidth="253.0">
<children>
<ImageView fitHeight="254.0" fitWidth="234.0" layoutX="56.0" pickOnBounds="true" preserveRatio="true">
</ImageView>
</children>
</AnchorPane>
<JFXButton text="Continue" />
</children>
</VBox>
在此先感谢您,请帮助我停止显示此对话框!
最佳答案
您在项目中使用的Gluon Mobile库不是开源库。
您可以找到有关它的所有信息here。
虽然您可以免费完全尝试使用该库(100%功能),但在启动时将显示此nag窗口。
您可以通过购买许可证来消除它,或者如果它是开源project或您是student。
关于java - 启动时删除gluon-mobile对话框,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42972158/