Hi, Can we make a titanium android tableview scroll horizontally. I tried this
var scrollAlbums = Ti.UI.createScrollView({ bottom : 10, backgroundColor:'green', contentHeight : Ti.UI.SIZE, // add this contentWidth : Ti.UI.SIZE, // change this height : 95, layout : 'horizontal', showHorizontalScrollIndicator : false, showVerticalScrollIndicator : true, // should be a visual indication if can scroll scrollType : 'horizontal', horizontalWrap : false, width : Ti.UI.FILL // assuming you need it full width - if not specify a width }); // Create a TableView. var aTableView = Ti.UI.createTableView({width:1000,backgroundColor:'red',height:200});Please suggest me what should be the possible solution for that.Thanks.