在我的应用程序中,我使用ImageLoader将图像加载到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);
}
});
我的问题是,如何添加Http标头?