I am working in an app which receives image from a server through a URL.
The image didn't load in the imageView but worked fine when I used webView.
var imageView = Ti.UI.createImageView({
image:imageURL,
height:320,
width:320,
top:30
});
//webview var imageWebView = Ti.UI.createWebView({ url:imageURL
});
When i tried the same URL in the browser, it redirected to another URL and displayed the image from there.
So, I tried with the redirected image URL inside the app which worked fine.
But I cant receive the redirected URL from server which looks far different from the direct URL.
Any fix for this solution ?
1 Answer
can just download the images to temp files and then point the imageView to the temp files to the
Your Answer
Think you can help? Login to answer this question!