java - Add headers to ImageLoader android volley -


in app have used imageloader load image networkview.

mrequestqueue = volley.newrequestqueue(getapplicationcontext());     mimageloader = new imageloader(mrequestqueue, new imageloader.imagecache() {         private final lrucache<string, bitmap> mcache = new lrucache<string, bitmap>(10);          public void putbitmap(string url, bitmap bitmap) {             mcache.put(url, bitmap);         }         public bitmap getbitmap(string url) {             return mcache.get(url);         }                 }); 

my question is, how can add http headers ?


Comments

Popular posts from this blog

python - PyInstaller UAC not working in onefile mode -

python - RuntimeError: can't re-enter readline -

php - Need to store a large amount of data in session with CI 3 but on storing large data in session it is itself destorying automatically -