Retrieving and displaying images in a GridView is a time consuming task. If done synchronously, this task can at times test the user?s patience. One way to provide a good user experience is to load the images asynchronously. So when the GridView loads, we initially display a default image for the user to view, while the actual images are being loaded from the database. In this article, we will see how to do so. ...
Go to the complete details ...