启动时删除胶子移动对话框

时间:2017-03-23 09:36:49

标签: java android javafx javafxports gluon-mobile

使用javafx(使用javafxports& gluon-mobile)对Android App Development不熟悉。我是否通过扩展MobileApplication课程来使用gluon-Api构建我的项目。
使用sample programs。我试图制作我自己的版本。
但是,在应用程序的启动开始得到这个不需要的对话框          
我在谈论这个对话框,它会在应用程序的启动时出现

Am talking about the dialog

这是我的代码。我已经扩展了MobileApplication类,以根据samples创建自己的应用版本。

    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类,它返回App的主视图。

package 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 文件,其根目录为查看。

    <?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>

在此先感谢,请帮助我停止出现此对话框!

1 个答案:

答案 0 :(得分:5)

您在项目中使用的Gluon Mobile库不是开源库。

您可以找到有关它的所有信息here

虽然您可以免费试用该库(100%功能),但您可以在启动时显示此唠叨窗口。

您可以通过购买许可证,或者如果它是开源project或您是student来摆脱它。