I am trying to get image in ImageView from url website but the image not show so, What is the wrong in this code? This is the url of the image.
It is my Main Activi
If you're going to be loading multiple images from URL's in your app, it's definitely worth looking into:
nostra13's "Universal Image Loader"
It's an awesome library with tons of features to display images from URLs, cast to bitmaps, etc.
Once you've included the class and declared the imageloader + imageloader configuration, its a simple as this:
imageLoader.displayImage("http://www.yoursite.com/my_picture.png", imageView);
Where imageView is the imageView you would like the image to appear in.