-1
I have an android application that selects an image of Sdcard and sends it to a php webservice that saves the image on a server and writes the image path to the database (Mysql). What I wanted to do now is take this image that is saved on the server and display it in this same android application. That is, do the reverse process of sending the image to the application. I have no idea how to do that, someone could help me with this problem?
It worked when I switched the
GlideApp
by justGlide
(although the Glide documentation has an example usingGlideApp
), getting:Glide.with(this).load("URL_DA_IMAGEM").into(imageView);
Thank you very much!– CloudAC
I also never used this Glideapp, but as I saw that came out version 4, I imagine it was a change.
– Márcio Oliveira