Volley Plus OutOfMemoryError in List Adapter

后端 未结 3 1738
刺人心
刺人心 2021-01-26 08:51

I am using Volley Plus library. I am showing ListView with image and text view with no error, but when i scroll up and down lots of time in this listview it get

3条回答
  •  粉色の甜心
    2021-01-26 09:18

    Here is the solution for this Problem with changes in Adapter class. In which i placed

        DiskLruBasedCache.ImageCacheParams cacheParams = new DiskLruBasedCache.ImageCacheParams(mContext, "CacheDirectory");
        cacheParams.setMemCacheSizePercent(0.5f);
        SimpleImageLoader mImageFetcher = new SimpleImageLoader(mContext, null, cacheParams);
    

    Inside if (rowView == null) which prevents to use above code repetitively in Adabpter Class.

提交回复
热议问题