I looked over the documentation of Picasso and couldn't see anything about threading. What will happen if I run something like this (for ListView
):
for(String url : urlArray)
{
Picasso.with(context).load(url).into(Holder.imageView);
}
would the images load parallely or one by one?