try{URL url = new URL("이미지 주소");URLConnection conn = url.openConnection();conn.connect();BufferedInputStream bis = new BufferedInputStream(conn.getInputStream());Bitmap bm = BitmapFactory.decodeStream(bis);bis.close();imgView.setImageBitmap(bm);}catch(Exception e){} ※주의!!퍼미션