Titanium JIRA Archive
Titanium SDK/CLI (TIMOB)

[TIMOB-2766] Android: cosmetic issue with first scroll when scrollviews are in a table view

GitHub Issuen/a
TypeBug
PriorityTrivial
StatusClosed
ResolutionCannot Reproduce
Resolution Date2012-08-27T11:55:48.000+0000
Affected Version/sn/a
Fix Version/sn/a
ComponentsAndroid
Labelsandroid, defect, in, reported-1.6.0, scrollview, tableview
ReporterThomas Huelbert
AssigneeNeeraj Gupta
Created2011-04-15T03:28:59.000+0000
Updated2017-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.

Comments

  1. Junaid Younus 2012-08-27

    Tested on a Samsung Galaxy S2 using TiSDK 2.2.0v20120824175712, unable to reproduce the issue. Ticket marked as resolved.
  2. Lee Morris 2017-03-10

    Closing ticket as the issue cannot be reproduced.

JSON Source