Losing images from NetworkImageView after Scrolling list up-down

后端 未结 1 1738
南旧
南旧 2020-12-22 05:51

I have a ListView that grabs news with images associated with it using Volley Json. At first it loads everything but when i scroll the list

相关标签:
1条回答
  • 2020-12-22 06:04

    Try like this in else block

    else
        {
            thumbnail.setVisibility(View.VISIBLE);//add this
            thumbnail.setImageUrl(newsArticlesItems.get(postion).getThumbnailUrl(), imageLoader);
        }
    
    0 讨论(0)
提交回复
热议问题