Problem Description
When you try to use remote images in the backgroundImages in the Views, it never shows.
Steps to reproduce
1. Create a new mobile project.
2. Paste this as app.js:
var win = Ti.UI.createWindow();
var view1 = Ti.UI.createView({
backgroundImage: 'http://dl.dropboxusercontent.com/u/72783403/AtoZ/1.png'
});
var view2 = Ti.UI.createView({
backgroundImage : 'http://dl.dropboxusercontent.com/u/72783403/AtoZ/2.png'
});
var scrollableView = Ti.UI.createScrollableView({
views:[view1,view2],
showPagingControl:true
});
win.add(scrollableView);
win.open();
3. Compile and run.
4. You will see a black screen.
Extra info
If you try the same with ImageViews instead of Views, will work.