Problem
Building a drop down list that can be attached to the view within a table row works fine on iOS, but on Android the embedded table will not scroll.
Steps to Reproduce
Please run the code below :
{noformat}
// this sets the background color of the master UIView (when there are no windows/tab groups on it)
Titanium.UI.setBackgroundColor('#000');
//
// create base UI tab and root window
//
var windowView = Titanium.UI.createWindow({
title:'TableTest',
backgroundColor:'#fff'
});
windowView.add(createTable('test table row', 'white', 1));
windowView.open();
function createTable(rowText, color, count) {
var tableView = Ti.UI.createTableView({
backgroundColor:color,
height: Ti.UI.FILL
});
for (i=0; i
Comments
JSON Source
Appears to be a duplicate of TIMOB-9419.
Closing ticket as duplicate and links to the related ticket have been provided above.