How do you use an image referenced by URL in an ImageView?
|
|
You'll have to download the image firstly
Then use the Imageview.setImageBitmap to set bitmap into the ImageView |
|||||||||||||||
|
Make sure you have the following permissions set in your
|
||||
|
I wrote a class to handle this, as it seems to be a recurring need in my various projects: https://github.com/koush/UrlImageViewHelper
|
|||||||||||
|
|
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:
|
|||||
|
|
The accepted answer above is great if you are loading the image based on a button click, however if you are doing it in a new activity it freezes up the UI for a second or two. Looking around I found that a simple asynctask eliminated this problem. To use an asynctask add this class at the end of your activity:
And call from your onCreate() method using:
The result is a quickly loaded activity and an imageview that shows up a split second later depending on the user's network speed. |
|||||
|
|
|
||||
|
|
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.
|
||||
|
|
|
Hi I have the most easiest code try this
main.xml
try this |
|||
|
|
|
Lots of good info in here...I recently found a class called SmartImageView that seems to be working really well so far. Very easy to incorporate and use. http://loopj.com/android-smart-image-view/ https://github.com/loopj/android-smart-image-view UPDATE: I ended up writing a blog post about this, so check it out for help on using SmartImageView. |
||||
|
|
|
I am a little late to the party here, but this library is useful: |
||||
|
|
|
Anyway people ask my comment to post it as answer. i am posting.
thanks. |
|||
|
|
|
This code is tested, it is completely working.
|
||||
|
|
|
|||
|
|
|
|||
|
|
|
|||
|
|
|
This is a late reply, as suggested above Async task will will and after googling a bit i found one more way for this problem.
I tried this myself and i have not face any issue yet. |
|||
|
|
protected by Praveen Apr 26 at 9:04
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.