Re: [android-developers] bitmap returning null

2011-03-12 Thread vani reddy
Hi kunju , Did you get to know anything? On Sat, Mar 12, 2011 at 3:01 PM, vani reddy wrote: > it is saying decoder returned false > > > On Sat, Mar 12, 2011 at 2:48 PM, vani reddy wrote: > >> i am testing it on v2.2 >> >> >> On Sat, Mar 12, 2011 at 2:24 PM, Kunju Vava wrote: >> >>> hi Vani >>>

Re: [android-developers] bitmap returning null

2011-03-12 Thread vani reddy
it is saying decoder returned false On Sat, Mar 12, 2011 at 2:48 PM, vani reddy wrote: > i am testing it on v2.2 > > > On Sat, Mar 12, 2011 at 2:24 PM, Kunju Vava wrote: > >> hi Vani >> In wich android version u used, reply i want to test it >> >> >> Thnks >> >> -- >> You received this mes

Re: [android-developers] bitmap returning null

2011-03-12 Thread vani reddy
i am testing it on v2.2 On Sat, Mar 12, 2011 at 2:24 PM, Kunju Vava wrote: > hi Vani > In wich android version u used, reply i want to test it > > > Thnks > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group

Re: [android-developers] bitmap returning null

2011-03-12 Thread Kunju Vava
hi Vani In wich android version u used, reply i want to test it Thnks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email t

Re: [android-developers] bitmap returning null

2011-03-12 Thread vani reddy
Hi , i used the links which u sent . On Fri, Mar 11, 2011 at 8:51 PM, Kunju Vava wrote: > hi > This may help u > > http://en.androidwiki.com/wiki/Loading_images_from_a_remote_server > > http://getablogger.blogspot.com/2008/01/android-download-image-from-server-and.html > > thnks > > -- > You re

Re: [android-developers] bitmap returning null

2011-03-11 Thread Kunju Vava
hi This may help u http://en.androidwiki.com/wiki/Loading_images_from_a_remote_server http://getablogger.blogspot.com/2008/01/android-download-image-from-server-and.html thnks -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to thi

[android-developers] bitmap returning null

2011-03-11 Thread vani reddy
Hi , i have a display an image from server, for which have an imageurl, i have used the below code: downloadImage(image_url); private void downloadImage(String urlStr) { InputStream in = null; try { in = openHttpConnection(urlStr); bitmap = BitmapFactory.decodeStream(in); S