I want to load image stored on a server to imageView
I know how to load images to imageView using
BitmapFactory.decodeStream(inputStream);
But I think that this method is caused security issues because Image URL is open (if know Images URL, they are able to download image in Web , show too.)
And The method should be connected as many as the number of images.
So, i want to know different way to get images at once from server
Do you know any way?? For example using stream or part?? help me~!