the image did not appear at all , there is an exception is always caught by try catch and the image has never been appeared
URL url = null;
try {
url = new URL(currentBook.getImageLink());
Bitmap bmp = BitmapFactory.decodeStream(url.openConnection().getInputStream());
bookImageView.setImageBitmap(bmp);
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}