I found Fedor\'s code here and implemented it into my project. The only difference is that my application does not have a list view, rather, I am accessing 1 image at a time
You should change the following line in android 2.1 or below.
cacheDir=new File(android.os.Environment.getExternalStorageDirectory(),"MyApp/Temp");
to this
cacheDir = new File(context.getCacheDir(), "MyApp/Temp");