[AC-2606] Android: WebView 'swipe' event is not getting triggered
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | n/a |
Status | Closed |
Resolution | Duplicate |
Resolution Date | 2013-04-05T07:38:37.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Titanium SDK & CLI |
Labels | android, swipe, webview |
Reporter | Soumya Kanti Kar |
Assignee | Shak Hossain |
Created | 2013-04-05T07:26:40.000+0000 |
Updated | 2016-03-08T07:41:41.000+0000 |
Description
The 'swipe' event for the WebView has been registered but when the swipe event is done, it is not getting triggered. If it is changed from WebView to Window, then the gesture is getting detected, but the same is not hapenning in WebView.
var currentWindow = Ti.UI.createWindow({
exitOnClose : true
});
var webview = Ti.UI.createWebView({
url : 'http://google.co.in'
});
webview.addEventListener('swipe',function(e) {
alert('<<Swipe>>');
});
currentWindow.add(webview);
currentWindow.open();
No comments