在Android上的模态窗口中没有检测到触摸屏按钮事件 [英] No detection of a touchScreen Button event in a modal window on Android

查看:144
本文介绍了在Android上的模态窗口中没有检测到触摸屏按钮事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我制作了一个在PC上工作正常的Javafx应用程序。现在,我尝试将其转移到Android智能手机。为此,我使用JavaFXPorts(Gluon),使用Eclipse和Gradle。



现在,我被困在一个非常简单的例子中:

  void showPopUp(){
Button button = new Button(Action do do));
HBox.setMargin(button,new Insets(10,30,10,30));

按钮.setOnAction(e - > {
actionToDo();
});

场景场景=新场景(按钮,100,200);
Stage stage = new Stage();
stage.initModality(Modality.APPLICATION_MODAL);
stage.setScene(scene);
stage.show();
}

你有理由的理由吗?



感谢



以下是 整个代码




  • 定期任务(正常工作)


  • 延迟任务工作正常)


  • 显示模态PopUp的按钮btn。触摸屏可以正常工作,并允许使用添加到HBOX boutonsMenuPrincipal的2个按钮boutonPopUpA和boutonPopUpB弹出PopUp



  • 和一个舞台,其场景连接到boutonsMenuPrincipal




在popUp中,显示boutonPopUpA和boutonPopUpB但不活动(触摸屏上没有生成的跟踪)

  package com.gluonapplication; 

import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;

public class GluonApplication extends Application {

private int nbAppuiToucheSetOnAction = 0;
private int nbAppuiTouchePopUp = 0;


static long BDTapplication = 110;
static long nbBDT = 0;
static long t0 = System.currentTimeMillis();


/ ***************************************** ******************* /
public static void periodicProcessing(String str){
nbBDT ++;
traceWithSystemTime(periodicProcessing of+ str +/ nbBDT:+ nbBDT);
}

/ ************************************ ******************** /
public static void traceWithSystemTime(String comments){
long t = System.currentTimeMillis();
long deltaT = t - t0;
System.out.println(time-t0:+ t0 +/ t:+ t +/ detaT:+ deltaT +ms ---+ comments);
}

/ ************************************ ******************** /
public void start(Stage primaryStage){

primaryStage.setTitle(Hello World sur Android !);

//一个PERIODIC TASK
Runnable runnable = new Runnable(){
@Override
public void run(){
// TODO Auto- (int i = 0; i <10; i ++){
periodicProcessing(timer plus);生成方法stub

}
}
};
final ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
service.scheduleAtFixedRate(runnable,0,BDTapplication,TimeUnit.MILLISECONDS);

//延迟任务
int TASK_DELAY = 1000; // ms
TimerTask task = new TimerTask(){
@Override
public void run(){
// TODO自动生成的方法stub
for(int i = 0; i <10; i ++){
periodicProcessing(timer task done);
}
}
};

new Timer()。schedule(task,TASK_DELAY);


AnchorPane root = new AnchorPane();
root.setVisible(true);
场景场景=新场景(根)


// ***********************按钮
// btn工作正常
按钮btn = new Button();
btn.setText(setOnAction 1);

btn.setOnAction(new EventHandler< ActionEvent>(){
@Override
public void handle(ActionEvent event){
nbAppuiToucheSetOnAction ++;
traceWithSystemTime SETonACTION:nbAppui =+ nbAppuiToucheSetOnAction);
showPopUpMenuPrincipal();
}
});
HBox.setMargin(btn,new Insets(10,30,10,30));

VBox zoneBtn = new VBox();
VBox.setMargin(zoneBtn,new Insets(30,5,1,10));
zoneBtn.getChildren()。add(btn);
zoneBtn.setAlignment(Pos.CENTER);

root.getChildren()。addAll(zoneBtn);


primaryStage.setTitle(Title);


// ************************************ * DISPLAY
root.requestFocus();
primaryStage.setScene(scene);
primaryStage.setTitle(Test4);
primaryStage.setFullScreen(true);
primaryStage.show();

traceWithSystemTime(Test of test);

}

/ ****************************** ***** /
void showPopUpMenuPrincipal(){
traceWithSystemTime(Beginning of showPopUpMenuPrincipal);
按钮boutonPopUpA = new Button(setOnAction 2a);
boutonPopUpA.setOnAction(e-> {
nbAppuiTouchePopUp ++;
traceWithSystemTime(Action sur setOnAction 2a:nbAppui:+ nbAppuiTouchePopUp);
});
按钮boutonPopUpB = new Button(setOnAction 2b);
boutonPopUpB.setOnAction(e-> {
nbAppuiTouchePopUp ++;
traceWithSystemTime(Action sur setOnAction 2b:nbAppui:+ nbAppuiTouchePopUp);
});

HBox.setMargin(boutonPopUpA,new Insets(10,30,10,30));

VBox zonePopUp = new VBox();
VBox.setMargin(zonePopUp,新Insets(30,5,1,10));
zonePopUp.getChildren()。add(boutonPopUpA);
zonePopUp.setAlignment(Pos.CENTER);


Stage stagePopUpMenu = new Stage();
stagePopUpMenu.setTitle(Title);
stagePopUpMenu.initModality(Modality.APPLICATION_MODAL);

HBox boutonsMenuPrincipal = new HBox();
boutonsMenuPrincipal.setAlignment(Pos.CENTER);
boutonsMenuPrincipal.getChildren()。addAll(zonePopUp,boutonPopUpB);

场景场景菜单=新场景(boutonsMenuPrincipal,400,250);

stagePopUpMenu.setOpacity(0.8);
stagePopUpMenu.setResizable(false);


stagePopUpMenu.setScene(sceneMenu);
stagePopUpMenu.show();
traceWithSystemTime(End of showPopUpMenuPrincipal);
}

}






我的构建毕业生

  buildscript {
repositories {
jcenter()
}
依赖关系{
classpath'org.javafxports:jfxmobile-plugin:1.0.0-b10'
}
}

应用插件:'org.javafxports.jfxmobile'

存储库{
jcenter()
}

mainClassName ='com.gluonapplication .GluonApplication'

jfxmobile {
android {
applicationPackage ='com.gluonapplication'
manifest ='src / android / AndroidManifest.xml'
androidSdk ='C:/ Users / pascal / AppData / Local / Android / sdk'
resDirectory ='src / android / res'
compileSdkVersion ='23'
buildToolsVersion = '22 .0.1'
}
ios {
infoPList = file('src / ios / Default-Info.plist')
}
}


解决方案

您需要更新jfxmobile插件版本。自从1.0.0-b10版本(一年半前)以来,许多事情已经修复和更新。



目前,版本是1.3.2。这不仅仅是插件,而是主要是javafxports的插件。 version包括。



如果您使用最喜爱的IDE上的Gluon插件,选择单一视图项目,您将获得最小项目模板和一个有效的 build.gradle 文件。



这是一个更新的构建脚本:

 code> buildscript {
repositories {
jcenter()
}
依赖关系{
classpath'org.javafxports:jfxmobile-plugin:1.3.2'
}
}

应用插件:'org.javafxports.jfxmobile'

存储库{
jcenter()
maven {
url'http://nexus.gluonhq.com/nexus/content/repositories/releases'
}
}

mainClassName ='com.gluonhq.testtouch .TestTouch'

依赖关系{
编译'com.gluonhq:charm:4.3.0'
}

jfxmobile {
downConfig {
version ='3.2.0'
plugins'显示','生命周期','状态栏','存储'
}
和roid {
manifest ='src / android / AndroidManifest.xml'
}
}

您可以将所有代码添加到BasicView中,并将其部署在移动设备上并对其进行测试。



我刚刚完成,一切都正常:任务运行速度快,按钮响应。



使用JavaFXPorts不建议创建第二个 Stage 。您可以使用对话框(内置的JavaFX对话框或Gluon Mobile对话框)。



您可以测试Gluon Mobile图书馆免费,您将在启动时只收到一个Nag屏幕。



无论如何,您可以删除Gluon Mobile库(只需删除 com .gluonhq:charm:4.3.0 from dependencies),您将不得不将 MobileApplication 返回到常规JavaFX 应用程序并删除BasicView类(主要是你现在的)。


I made a Javafx application that works fine on PC. Now, I try to transfer it to Android Smartphone. To do that, I use JavaFXPorts (Gluon), with Eclipse and Gradle.

Now, I am stuck with a very simple example:

void showPopUp() {
     Button button = new Button("Action do do")); 
     HBox.setMargin(button , new Insets(10, 30, 10, 30));

     button .setOnAction(e -> {
            actionToDo();
        });

     Scene scene = new Scene (button, 100, 200);
     Stage stage = new Stage();
     stage.initModality(Modality.APPLICATION_MODAL);
     stage.setScene(scene);
     stage.show();
}

Have you an idea of the reason?

Thanks

Here is the whole code with:

  • a periodic task (it works fine)

  • a delayed task (it works fine)

  • a button "btn" that displays the modal PopUp. The touchScreen on it works fine and allows to go to the PopUp

  • the PopUp with 2 buttons boutonPopUpA and boutonPopUpB that are added to the HBOX boutonsMenuPrincipal

  • and a stage with its scene "connected to" boutonsMenuPrincipal

In the popUp, boutonPopUpA and boutonPopUpB are displayed but inactive (No generated trace on a touchScreen)

 package com.gluonapplication;

import java.util.Timer;
import java.util.TimerTask;
import java.util.concurrent.Executors;
import java.util.concurrent.ScheduledExecutorService;
import java.util.concurrent.TimeUnit;

import javafx.application.Application;
import javafx.event.ActionEvent;
import javafx.event.EventHandler;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.layout.AnchorPane;
import javafx.scene.layout.HBox;
import javafx.scene.layout.VBox;
import javafx.stage.Modality;
import javafx.stage.Stage;

public class GluonApplication extends Application {

    private int nbAppuiToucheSetOnAction = 0;
    private int nbAppuiTouchePopUp = 0;


    static long BDTapplication = 110;
    static long nbBDT = 0;
    static long t0 = System.currentTimeMillis();


    /********************************************************/
    public static void periodicProcessing(String str) {
        nbBDT++;
        traceWithSystemTime("periodicProcessing of " + str + " / nbBDT: " + nbBDT);
    }

    /********************************************************/
    public static void traceWithSystemTime(String comments) {
            long t =  System.currentTimeMillis();
            long deltaT =t - t0;
           System.out.println("time - t0: " + t0 + " /  t: "+ t + " / detaT: " + deltaT + " ms --- " + comments);
    }

  /********************************************************/
    public void start(Stage primaryStage) {

        primaryStage.setTitle("Hello World sur Android! ");

        // A PERIODIC TASK
        Runnable runnable = new Runnable() {
            @Override
            public void run() {
                // TODO Auto-generated method stub
                for (int i=0; i < 10; i++) {
                    periodicProcessing("timer plus");
                }
            }
        };
           final ScheduledExecutorService service = Executors.newSingleThreadScheduledExecutor();
           service.scheduleAtFixedRate(runnable, 0, BDTapplication, TimeUnit.MILLISECONDS);

// A DELAYED TASK
        int TASK_DELAY = 1000; // ms
        TimerTask task = new TimerTask() {
            @Override
            public void run() {
                // TODO Auto-generated method stub
                for (int i = 0; i < 10; i++) {
                    periodicProcessing("timer task done");
                }
            }
        };

        new Timer().schedule(task, TASK_DELAY);


        AnchorPane root = new AnchorPane();
         root.setVisible(true);
        Scene scene = new Scene(root);


        // *********************** Button
      // btn works fine
        Button btn = new Button();
        btn.setText("setOnAction 1");

        btn.setOnAction(new EventHandler<ActionEvent>() {
            @Override
            public void handle(ActionEvent event) {
                nbAppuiToucheSetOnAction++;
               traceWithSystemTime("SETonACTION: nbAppui = "+ nbAppuiToucheSetOnAction);
                showPopUpMenuPrincipal();
         }
        });
        HBox.setMargin(btn, new Insets(10, 30, 10, 30));

        VBox zoneBtn= new VBox();
        VBox.setMargin(zoneBtn, new Insets(30, 5, 1, 10));
        zoneBtn.getChildren().add( btn);
        zoneBtn.setAlignment(Pos.CENTER);

         root.getChildren().addAll(zoneBtn);


         primaryStage.setTitle("Title");


        // ************************************* DISPLAY
        root.requestFocus();
        primaryStage.setScene(scene);
        primaryStage.setTitle("Test4");
        primaryStage.setFullScreen(true);
        primaryStage.show();

       traceWithSystemTime("End of test");

    }

    /*************************************/
void    showPopUpMenuPrincipal(){
    traceWithSystemTime("Beginning of  showPopUpMenuPrincipal");
    Button boutonPopUpA = new Button("setOnAction 2a");
    boutonPopUpA.setOnAction(e-> {
        nbAppuiTouchePopUp++;
       traceWithSystemTime("Action sur setOnAction 2a: nbAppui: " + nbAppuiTouchePopUp);
    });
    Button boutonPopUpB = new Button("setOnAction 2b");
    boutonPopUpB.setOnAction(e-> {
        nbAppuiTouchePopUp++;
       traceWithSystemTime("Action sur setOnAction 2b: nbAppui: " + nbAppuiTouchePopUp);
    });

    HBox.setMargin(boutonPopUpA, new Insets(10, 30, 10, 30));

    VBox zonePopUp= new VBox();
    VBox.setMargin(zonePopUp, new Insets(30, 5, 1, 10));
    zonePopUp.getChildren().add( boutonPopUpA);
    zonePopUp.setAlignment(Pos.CENTER);


    Stage stagePopUpMenu = new Stage();
    stagePopUpMenu.setTitle("Title");
    stagePopUpMenu.initModality(Modality.APPLICATION_MODAL);

    HBox boutonsMenuPrincipal = new HBox();
    boutonsMenuPrincipal.setAlignment(Pos.CENTER);
    boutonsMenuPrincipal.getChildren().addAll( zonePopUp, boutonPopUpB);

    Scene sceneMenu = new Scene(boutonsMenuPrincipal, 400, 250);

    stagePopUpMenu.setOpacity(0.8);
    stagePopUpMenu.setResizable(false);


    stagePopUpMenu.setScene(sceneMenu);
    stagePopUpMenu.show();
    traceWithSystemTime("End of  showPopUpMenuPrincipal");
}

    }


And my build gradle:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.0.0-b10'
    }
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
}

mainClassName = 'com.gluonapplication.GluonApplication'

jfxmobile {
    android {
        applicationPackage = 'com.gluonapplication'
        manifest = 'src/android/AndroidManifest.xml'
        androidSdk = 'C:/Users/pascal/AppData/Local/Android/sdk'
        resDirectory = 'src/android/res'
        compileSdkVersion = '23'
        buildToolsVersion = '22.0.1'
    }
    ios {
        infoPList = file('src/ios/Default-Info.plist')
    }
}

解决方案

You need to update the jfxmobile plugin version. Many things have been fixed and updated since the 1.0.0-b10 version (from a year and a half ago).

Currently the version is 1.3.2. It is not only the plugin, but the mainly the javafxports version that the plugin includes.

If you use the Gluon plugin on your favorite IDE, selecting a Single View project you will get the minimum project template and a valid build.gradle file.

This is an updated build script:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'org.javafxports:jfxmobile-plugin:1.3.2'
    }
}

apply plugin: 'org.javafxports.jfxmobile'

repositories {
    jcenter()
    maven {
        url 'http://nexus.gluonhq.com/nexus/content/repositories/releases'
    }
}

mainClassName = 'com.gluonhq.testtouch.TestTouch'

dependencies {
    compile 'com.gluonhq:charm:4.3.0'
}

jfxmobile {
    downConfig {
        version = '3.2.0'
        plugins 'display', 'lifecycle', 'statusbar', 'storage'
    }
    android {
        manifest = 'src/android/AndroidManifest.xml'
    }
}

You can add all your code to the BasicView, deploy it on mobile and test it.

I've just done it and everything works fine: the task runs fast, and the buttons are responsive.

Using JavaFXPorts it's not recommended creating a second Stage. You can use a Dialog (either built-in JavaFX dialog or Gluon Mobile dialog) instead.

You can test Gluon Mobile library for free, you will get only a nag screen at startup.

Anyway, you can remove the Gluon Mobile library (just remove com.gluonhq:charm:4.3.0 from dependencies), and you'll have to port back MobileApplication to a regular JavaFX Application and remove the BasicView class (mostly as you have now).

这篇关于在Android上的模态窗口中没有检测到触摸屏按钮事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆