[TIMOB-2766] Android: cosmetic issue with first scroll when scrollviews are in a table view
| GitHub Issue | n/a | 
|---|---|
| Type | Bug | 
| Priority | Trivial | 
| Status | Closed | 
| Resolution | Cannot Reproduce | 
| Resolution Date | 2012-08-27T11:55:48.000+0000 | 
| Affected Version/s | n/a | 
| Fix Version/s | n/a | 
| Components | Android | 
| Labels | android, defect, in, reported-1.6.0, scrollview, tableview | 
| Reporter | Thomas Huelbert | 
| Assignee | Neeraj Gupta | 
| Created | 2011-04-15T03:28:59.000+0000 | 
| Updated | 2017-03-10T18:18:36.000+0000 | 
Description
spun off after closing #1787
Titanium SDK version: 1.6.0 (01/06/11 08:47 8b2fd0e), seen only on the G1 running 1.6
1.create a test app with the following snippet
Titanium.UI.setBackgroundColor('#000');
var win = Titanium.UI.createWindow({
title:'Test', backgroundColor:'#fff', fullscreen: true
});
var views = [];
for (var i = 0; i < 5; i++) {
views.push(
    Ti.UI.createTableView({
        data: [ Ti.UI.createTableViewRow({title: 'Row for view ' + i}) ]
    })
);
}
win.add(Ti.UI.createScrollableView({ views: views }));
win.open();
2.install onto a 1.6 device
3.watch the scroll view, and scroll right (to the second
scrollView)
results: no animation (should animate from left to right as swipe occurs)
4.repeat from 1 - 2 again
results: animation now occurs.
notes: only happens to the first swipe and only affects the first tableView.
Tested on a Samsung Galaxy S2 using TiSDK 2.2.0v20120824175712, unable to reproduce the issue. Ticket marked as resolved.
Closing ticket as the issue cannot be reproduced.