I have a link that takes me to an image. How would I go about accessing this link and displaying this link in Android?
Example: http://chart.finance.yahoo.com/z?s=GOOG&t=6m&q=l returns a graph. How do I use this graph in Android (downloading and displaying)?
You can use a HTPPGET connection to get the connection of URL. So if you use HTTPGET, you will get an inputstream.
Once you get the inputstream, just convert that inputstream to a
Bitmapor drawable and use as required.Sample code is below.
So you can use this bitmap as required and you need to handle all the connection exceptions.