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 -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -