hammerjs泛事件不在cordova应用程序中工作

时间:2015-06-22 11:02:10

标签: javascript android cordova hammer.js zepto

我在Cordova应用程序中使用了Hammer.js和jQuery插件。我也在使用zepto和zepto touch。两个(当前)的原因是我最近只使用了zepto。但触摸/手势在Android上无效。所以现在我尝试按事件移动到Hammer.js。 虽然Pinch Events工作得很完美(而zepto touch也包含在库中),但我没有触发pan事件。也许有一个zepto滑动事件干扰,但我无法验证这一点。

这是我的代码:

float[] CalculateCellWidths(String[] CellHeaders, Font CellFont)
    {
        float[] CellWidths = new float[CellHeaders.length];

        for (int i = 0; i < CellHeaders.length; i++)
        {
            CellWidths[i] = CellFont.getCalculatedBaseFont(true).getWidthPoint(CellHeaders[i], CellFont.getCalculatedSize());
        }
        return CellWidths;
    }

我已尝试使用0和10的阈值。此外,我还尝试使用&#34; pan&#34;,&#34; pan panmove&#34;和#34; panmove&#34;在on函数中。

有什么想法吗?

0 个答案:

没有答案