In my app for Android I\'m using Volley for loading images in custom listview.
when i refresh(delete all items and load tiems) listview many times, my app is killed with
Have you tried
RequestQueue volleyQueue = Volley.newRequestQueue(this);
DiskBasedCache cache = new DiskBasedCache(getCacheDir(), 16 * 1024 * 1024);
volleyQueue = new RequestQueue(cache, new BasicNetwork(new HurlStack()));
volleyQueue.start();
from
https://stackoverflow.com/a/21299261/3399432
This changes the cache size