Performance issue downloading images for RecyclerView
问题 I have a ListView with a custom adapter. Every row has an ImageView that I render using a Bitmap, but my current code blocks the UI thread as I am using get() after executing my AsyncTask that downloads the bitmaps. I would like to change my code and access the imageViews in the onPostExecute() or something similar. So that the rows already display without waiting for all sprites to load. Adapter class (download is triggered here) public class PokemonAdapter extends ArrayAdapter<PokemonPOJO>