Opening images from a folder on an external server on android

0

Hello, I have a folder with images on an external server, how can I get the link from this folder and open the images that are in it (slide type) in an activity in the case in android studio?     

asked by anonymous 17.06.2018 / 06:57

1 answer

0

You can retrieve the image through an InputStream and use BitmapFactory.decodeStream () to create a bitmap from the InputStream, and then use the setImageBitmap () for the image view display image.

But I would personally use Glide to accelerate this process.

    
17.06.2018 / 12:44