Here is an example image URL:
http://java.sogeti.nl/JavaBlog/wp-content/uploads/2009/04/android_icon_256.png
How do you use an image referenced by URL in an ImageView?
|
feedback
|
|
You'll have to download the image firstly
Then use the Imageview.setImageBitmap to set bitmap into the ImageView | |||||||||||||||||
feedback
|
|
I wrote a class to handle this, as it seems to be a recurring need in my various projects: https://github.com/koush/UrlImageViewHelper
| |||||||||
|
feedback
|
|
You could also use this LoadingImageView view to load an image from a url: http://blog.blundell-apps.com/imageview-with-loading-spinner/ Once you have added the class file from that link you can instantiate a url image view: in xml:
In code:
And update it using:
| ||||
feedback
|
|
I have recently found a thread here, as I have to do a similar thing for a listview with images, but the principle is simple, as you can read in the first sample class shown there (by jleedev). You get the Input stream of the image (from web)
Then you store the image as Drawable and you can pass it to the ImageView (via setImageDrawable). Again from the upper code snippet take a look at the entire thread.
| ||||
|
feedback
|
| ||||
feedback
|
| ||||
|
feedback
|
|
Hi I have the most easiest code try this
main.xml
try this | |||
|
feedback
|
| |||
|
feedback
|
| |||
|
feedback
|
|
A simple and clean way to do this is to use the open source library Prime. | |||
|
feedback
|