How do I optimize my app? After fetching the data from api and display in ListView I experiencing lag

You did not answer this.

If you have too many images to download, you need to downsize the images from server side, not on app side.

Or you can use other extension (like picasso) to load the images asynchronously. but in this way you can not use build-in listView. You have to make you own listView using extension (like CompCreator) to create the custom layout by your self.

1 Like