[TIMOB-768] Android: Missing Gesture Two Finger Tap
GitHub Issue | n/a |
---|---|
Type | Bug |
Priority | Medium |
Status | Closed |
Resolution | Fixed |
Resolution Date | 2012-09-18T17:53:19.000+0000 |
Affected Version/s | Release 3.0.0 |
Fix Version/s | Release 3.0.0, Sprint 2012-19 API, 2012 Sprint 19 |
Components | Android |
Labels | api, module_window, qe-review, qe-testadded |
Reporter | Don Thorp |
Assignee | Arthur Evans |
Created | 2011-04-15T02:36:00.000+0000 |
Updated | 2013-09-20T07:02:27.000+0000 |
Description
Test case
var win = Ti.UI.createWindow({
backgroundColor: '#fff',
fullscreen: false,
exitOnClose: true
});
var events = [
'click',
'dblclick',
'doubletap',
//'longclick',
'longpress',
'pinch',
'singletap',
'swipe',
'touchcancel',
'touchend',
'touchmove',
'touchstart',
'twofingertap',
'threefingertap',
'fourfingertap',
'fivefingertap'
];
var addListener = function(eventName) {
win.addEventListener (eventName, function(e) {
Ti.API.info(eventName);
});
}
for (var i = 0; i < events.length; i++) {
addListener(events[i]);
}
win.open();
Need to set up a new PR for this. The fix is in https://github.com/appcelerator/titanium_mobile/pull/2041.
Tested with a Samsung Galaxy S3, TiSDK 2.2.0v20120810194112, TiStudio 2.1.1.201207271312, issue still reproducible.
Resubmitted as: https://github.com/appcelerator/titanium_mobile/pull/2903
Giving two finger tap now.Environment used for verification - Titanium SDK:3.0.0.v20121024144610 Titanium Studio:3.0.0.201210220122
Please see this: https://github.com/appcelerator/titanium_mobile/pull/4720