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?
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?
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.