Hello, I am new to Xamarin and want to ask about a simple and at the same time a complicated thing.
I need a quite long lists in my application and these lists may contain images. Common problem with such structures - they can lead to OutOfMemory issues if you load everything in memory at once. The usual solution is to load only items that should be displayed right now and dispose ones which you don't need anymore.
I had HUGE problems with this solution when developed a WP8 app - I had to implement a quite complicated custom control based on longListSelector with some hacks to make the GC to collect images.
What is the best approach to this in Xamarin? I want to be as cross-platform as possible. Please suggest a tutorial and app examples with such kind of functionality.