将标题添加到ImageLoader android volley

时间:2017-03-28 14:41:43

标签: java android http-headers android-volley

在我的应用程序中,我使用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标头?

0 个答案:

没有答案