How to download the picture from the site to bitmap.
-
There's a URL picture of how to download this picture from URL to Bitmap.
-
public static Bitmap getBitmapFromURL(String src) { try { URL url = new URL(src); HttpURLConnection connection = (HttpURLConnection) url.openConnection(); connection.setDoInput(true); connection.connect(); InputStream input = connection.getInputStream(); Bitmap myBitmap = BitmapFactory.decodeStream(input); return myBitmap; } catch (IOException e) { // Log exception return null; } }
https://stackoverflow.com/questions/8992964/android-load-from-url-to-bitmap