The FFImageLoading Xamarin Android/iOS image loading library is working fantastic in a custom list by using the following in the BaseAdapter derived class' overriden GetView:
ImageViewAsync imageViewAsync = view.FindViewById<ImageViewAsync>(Resource.Id.Image);
ImageService.LoadUrl(item.ImagePoster).Into(imageViewAsync);
The problem is that when scrolling down the Android ListView it takes too long to download each image and so I'd like to preload some or all the images in the list to make for a better user experience.
So can I preload images with FFImageLoading without loading into an ImageViewAsync?
FFImageLoading latest alpha nuget package provides a Preload()
method: