Ошибка кеша памяти при доступе внутри приложения

Я много искал, но я не понял, где моя ошибка. Сначала в моем приложении я получаю изображения из Интернета, если нет сети, я получаю их из созданной базы данных. Я собираюсь опубликовать свой класс ImageLoader, затем класс памяти, а затем класс utils, если что-то не так, пожалуйста, мне нужна помощь. Заранее спасибо.}}}

public class ClassImageLoader {

ClassMemoryCache memoryCache=new ClassMemoryCache();
ClassFileCache fileCache;
private Map imageViews=Collections.synchronizedMap(new WeakHashMap());
ExecutorService executorService; 

public ClassImageLoader(Context context){
    fileCache=new ClassFileCache(context);
    executorService=Executors.newFixedThreadPool(5);
}

final int stub_id=R.drawable.restlogobutton;
public void DisplayImage(String url, ImageView imageView)
{
    imageViews.put(imageView, url);
    Bitmap bitmap=memoryCache.get(url);

    if(bitmap!=null)
        imageView.setImageBitmap(bitmap);
    else
    {
        queuePhoto(url, imageView);
        imageView.setImageResource(stub_id);
    }
}

private void queuePhoto(String url, ImageView imageView)
{
    PhotoToLoad p=new PhotoToLoad(url, imageView);
    executorService.submit(new PhotosLoader(p));
}

private Bitmap getBitmap(String url) 
{
    File f=fileCache.getFile(url);

    //from SD cache
    Bitmap b = decodeFile(f);
    if(b!=null)
        return b;

    //from web
    try {
        Bitmap bitmap=null;
        URL imageUrl = new URL(url);
        HttpURLConnection conn = (HttpURLConnection)imageUrl.openConnection();
        conn.setConnectTimeout(30000);
        conn.setReadTimeout(30000);
        conn.setInstanceFollowRedirects(true);
        InputStream is=conn.getInputStream();
        OutputStream os = new FileOutputStream(f);
        ClassUtils.CopyStream(is, os);
        os.close();
        bitmap = decodeFile(f);
        return bitmap;
    } catch (Exception ex){
       ex.printStackTrace();
       return null;
    }
}

//decodes image and scales it to reduce memory consumption
private Bitmap decodeFile(File f){
    try {
        //decode image size
        BitmapFactory.Options o = new BitmapFactory.Options();
        o.inJustDecodeBounds = true;
        BitmapFactory.decodeStream(new FileInputStream(f),null,o);

        //Find the correct scale value. It should be the power of 2.
        final int REQUIRED_SIZE=70;
        int width_tmp=o.outWidth, height_tmp=o.outHeight;
        int scale=1;
        while(true){
            if(width_tmp/2

Ответы на вопрос(2)

Ваш ответ на вопрос