I'm developing an App on which I have plenty of ListViews. On each ListView Item, there is a picture. In order to load the pictures from the server taking in consideration:
- Basic Authentication.
- SSL certification.
I would like to know what is the best way to do that. I've try to make a recursive method which uses ImageRequest from Volley Library but it seems like it is a little bit blocking the UI Thread... I've tried Picasso also which allows to load asynchronously pictures thanks to an association between the ImageView and the request by couldn't make it work with Basic Authentication and by ignoring SSL Certification. Here is my not solved problem
I'm looking for some other solutions... So If someone has an idea, would be really appreciated...
Thanks in advance !