Is this code has any error ? When I run this i got an error here as Can't draw recycled bitmap. I got this code from while i am reading through stack overflow itself.
`Bitmap bm = BitmapFactory.decodeFile(urlString,options);
imgDisplay.setImageBitmap(bm);
if(bm!=null){
bm.recycle();
}`