I want to fetch image from net from some URL and show it in my ImageView. following is the code i am using :-
Bitmap bm = null;
try {
URL aURL = new URL("stringURL");
URLConnection conn = aURL.openConnection();
conn.connect();
InputStream is = conn.getInputStream();
BufferedInputStream bis = new BufferedInputStream(is);
bm = BitmapFactory.decodeStream(bis);
bis.close();
is.close();
}catch (Exception e) {
// TODO: handle exception
}
iv.setImageBitmap(bm);
but i can not get the image
I think better you can use below code, which works very well for me.
I think the error is in
should be without quotes
if stringURL is valid url it will work...
hope it helps../