[AC-2578] Android: Swipe quickly to the vertical, TableView's row appear in the wrong place
GitHub Issue | n/a |
Type | Bug |
Priority | n/a |
Status | Closed |
Resolution | Cannot Reproduce |
Resolution Date | 2012-09-28T20:50:34.000+0000 |
Affected Version/s | n/a |
Fix Version/s | n/a |
Components | Titanium SDK & CLI |
Labels | android |
Reporter | TETSUYA |
Assignee | Shak Hossain |
Created | 2012-08-23T17:59:18.000+0000 |
Updated | 2016-03-08T07:41:39.000+0000 |
Description
When you quickly swipe vertically TableView, I have found the problem that display of the line is incorrectly positioned.
This problem seems to occur if you have set the swipe event handler.
It is the source code that has verified the following.
var win = Ti.UI.createWindow({backgroundColor:'white', title:'tv-test'});
var tv = Ti.UI.createTableView();
var list = [];
for (var i = 0 ; i < 3 ; i++)
{
var row = Ti.UI.createTableViewRow({
title:'ABC',
height:40,
});
list.push(row);
}
tv.setData(list);
tv.addEventListener('swipe', function(e) {
Ti.API.info(" >>>>>>>>>>>> swipe event <<<<<<<<<<<<<<<<<<<");
});
win.add(tv);
win.open({modal:true});
I also attached a screen capture of the problem.
I'm glad I get a confirmation.
Thank you.
Attachments
Can't reproduce on SDK 2.1.2 w Samsung Galaxy S2 (AT&T), Android 2.3.2.
Closing since the issue can't be reproduced.