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

javascript - Clear button on addentry page doesn't work -

python - Error: Unresolved reference 'selenium' What is the reason? -

asp.net ajax - Jquery scroll to element just goes to top of page -