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
Post a Comment