C Cor Active Member Licensed User Longtime User Jan 17, 2011 #1 What is the best way to show an image from a website into imageview or could i use webview to show only an image?
What is the best way to show an image from a website into imageview or could i use webview to show only an image?
Erel B4X founder Staff member Licensed User Longtime User Jan 18, 2011 #2 The Flickr Viewer example downloads several images and show it in ImageViews. http://www.b4x.com/forum/basic4android-getting-started-tutorials/6646-flickr-viewer.html The idea is to download the image with Response.GetAsynchronously and then show the saved file. You can also just point a url to the image and show it with a WebView. Upvote 0
The Flickr Viewer example downloads several images and show it in ImageViews. http://www.b4x.com/forum/basic4android-getting-started-tutorials/6646-flickr-viewer.html The idea is to download the image with Response.GetAsynchronously and then show the saved file. You can also just point a url to the image and show it with a WebView.