Can't load image from my local server on Android
问题 I am trying to load an image from a server to show it in an ImageView I used ImageView imgView = (ImageView) findViewById(R.id.ivProduct); Bitmap bitmap = null; try { URL urlImage = new URL( "http://www.google.fr/intl/en_com/images/srpr/logo1w.png"); HttpURLConnection connection = (HttpURLConnection) urlImage .openConnection(); InputStream inputStream = connection.getInputStream(); bitmap = BitmapFactory.decodeStream(inputStream); imgView.setImageBitmap(bitmap); } catch (MalformedURLException