I want to display external image like:
\"http://abc.com/image.jpg\"
in my android phone application.
can any one guide me how to achieve this?
Just another approach to download the image from a url
try { Bitmap bitmap = BitmapFactory.decodeStream((InputStream)new URL("http://abc.com/image.jpg").getContent()); } catch (MalformedURLException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); }