I need to display large sized images(500+px) on coverflow. When i display those on the coverflow i found that the images partially lay on the another.Suggest an another alternative solution or please add another parameter like space between images in coverflow. Having them could override this issue.
EDITED:
--------------
I have added the sample code:
var win = Titanium.UI.createWindow({
backgroundColor : "#FFFFFF",
tabBarHidden : true
});
win.addEventListener("close", function(e) {
Ti.API.info("Inside the WIN close")
alert("Inside the WIN close");
})
var coverflowArray = [];
for (var i = 0; i < 5; i++)
coverflowArray.push({
width : 500,
height : 500,
image : "
http://s12.postimg.org/8lzz09cu5/1000.jpg"
});
var coverFlow = Ti.UI.iOS.createCoverFlowView({
images : coverflowArray
});
win.add(coverFlow);
win.open();
Please do not create multiple tickets for the same issue. There was really no need to clone TC-4010 to open this ticket.