Hi all,
In my app, I'm using a tableview in order to display a list of items.
In each item, I need to display one image. This image is downloaded from a server with the DownloadManager. The downloadManager can download 5 files simultaneously (5 is the limit)
When the download is completed, I draw the bitmap in a panel with "Draw( )" method. The Draw method is executed with a synchronous way.
My problem are:
- The tableview works well with 5 images but when I want to download 10 images, the tableview freezes when I scroll it.
My questions is :
- How to fix the above issue?