[android-developers] Re: Downloading images in ListView

2010-01-20 Thread Namrata
thanks Nithin On Jan 19, 4:07 pm, Nithin nithin.war...@gmail.com wrote: Just now found one API setImageURI() for ImageView. You can try this too.. setImageURI(Uri.parse(http://abc.com;)); Nithin On Jan 19, 3:59 pm, Nithin nithin.war...@gmail.com wrote: AFAIK, no API like that. You need

[android-developers] Re: Downloading images in ListView

2010-01-19 Thread Nithin
AFAIK, no API like that. You need to download as a inputstream, convert to bitmap, set the bitmap to imageview using the API setImageBitmap() to the imageView. Nithin On Jan 19, 3:47 pm, Namrata puranik.namr...@gmail.com wrote: Hi, I am using ListView to show 1 TextView and 1 ImageView. I

[android-developers] Re: Downloading images in ListView

2010-01-19 Thread Nithin
Just now found one API setImageURI() for ImageView. You can try this too.. setImageURI(Uri.parse(http://abc.com;)); Nithin On Jan 19, 3:59 pm, Nithin nithin.war...@gmail.com wrote: AFAIK, no API like that. You need to download as a inputstream, convert to bitmap,  set the bitmap to imageview