滑动功能无法使用适用于 Android 的 jquerymobile 和 PhoneGap
我是phonegap的新手。我正在使用phonegap for android在eclipse中创建应用程序。我在xml文件夹中添加了phonegap.jar和插件。我还添加了jquery库和phonegap1.1.0 js。我正在尝试实现滑动功能以将一个页面导航到另一个页面,但它不起作用。有人能告诉我如何解决这个问题吗?
我在我的活动中调用 inex.html 这是我的index.html
<html>
<head>
<title>sample check</title>
<link rel="stylesheet" href="www/jquery.mobile/jquery.mobile-1.0rc2.min.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="js/fnswipe.js"></script>
<script type="text/javascript" src="www/jquery.mobile/jquery-1.6.4.min"></script>
<script type="text/javascript" src="www/jquery.mobile/jquery.mobile-1.0rc2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>
</head>
<body>
<div data-role="page" id="home">
<div data-role="content">
<p>
<ul data-role="listview" data-inset="true" data-theme="c">
<li id="listitem">Swipe Right to smple check page</li>
</ul>
</p>
</div>
</div>
</body>
</html>
这是我包含的js 文件
$("#listitem").swiperight(function() {
$.mobile.changePage("file:///android_asset/www/samplecheck.html");
});
感谢您的帮助
I am new to the phonegap .i am creating application in eclipse using phonegap for android .I added phone gap.jar and plugin in xml folder.I have added jquery library and phonegap1.1.0 js also. am trying to implement swipe function to navigate one page to another page but its not working .can anybody tell how to solve the problem?
I am calling in inex.html in my activity
this is my index.html
<html>
<head>
<title>sample check</title>
<link rel="stylesheet" href="www/jquery.mobile/jquery.mobile-1.0rc2.min.css" type="text/css" charset="utf-8" />
<script type="text/javascript" src="js/fnswipe.js"></script>
<script type="text/javascript" src="www/jquery.mobile/jquery-1.6.4.min"></script>
<script type="text/javascript" src="www/jquery.mobile/jquery.mobile-1.0rc2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="phonegap-1.1.0.js"></script>
</head>
<body>
<div data-role="page" id="home">
<div data-role="content">
<p>
<ul data-role="listview" data-inset="true" data-theme="c">
<li id="listitem">Swipe Right to smple check page</li>
</ul>
</p>
</div>
</div>
</body>
</html>
This is my js file included
$("#listitem").swiperight(function() {
$.mobile.changePage("file:///android_asset/www/samplecheck.html");
});
Thanks for your help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
我遇到了同样的问题,除 Android 外,所有滑动事件均有效。为了解决这个问题,我必须为滑动事件设置阈值。您可以在 JS 文件中调用滑动事件之前设置它们。为了获得最佳结果,我将其设置为:
这个答案对我帮助很大:在 jquery mobile 中垂直滚动期间触发向左滑动/向右滑动
以及文档:事件 ->触摸事件 ->滑动
希望这有帮助!
I was having the same issue, all swipe events were working except for on Android. To solve the issue I had to set the Threshold values for the Swipe events. You can set them just before you call your swipe events in your JS file. For best results I have mine set to:
This answer helped me a lot : swipeleft/swiperight triggered during vertical scroll in jquery mobile
As well as the documentation: Events -> Touch Events -> Swipe
Hope this helps!!
尝试与此类似的代码,看看它是否有任何帮助。
Try the code similar to this and see if it helps in any way.
你可以试试这个
you can try this
我正在使用
jquery mobile 1.2.0
来滑动页面。此函数不依赖于phonegap
或cordova
。这是我的工作代码。希望这会对您有所帮助:I'm using
jquery mobile 1.2.0
to swipe the page. This function doesn't depend uponphonegap
orcordova
. This is my working code. Hope this will help you: