Back to project page RZAndroidBaseUtils.
The source code is released under:
MIT License
If you think the Android project RZAndroidBaseUtils listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.raizlabs.imagecaching; /* w w w . ja va 2s . c om*/ import android.graphics.Bitmap; /** * {@link ImageCache} implementation which doesn't actually cache anything * and therefore never returns images. This can be used as a place holder * which removes {@link ImageCache} functionality without removing or * refactoring any code - just stick this in place of your cache implementation. * * @author Dylan James * */ public class StubImageCache implements ImageCache { @Override public void addImage(String imageName, Bitmap bitmap) { } @Override public Bitmap getImage(String imageName) { return null; } @Override public Bitmap remove(String imageName) { return null; } @Override public void purge() { } }