Back to project page cube-sdk.
The source code is released under:
Apache License
If you think the Android project cube-sdk 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 in.srain.cube.image.iface; //ww w. j a va 2s . c o m import android.graphics.drawable.BitmapDrawable; public interface ImageMemoryCache { public void set(String key, BitmapDrawable data); public BitmapDrawable get(String key); public void clear(); public void delete(String key); /** * max byte * * @return */ public long getMaxSize(); /** * used byte * * @return */ public long getUsedSpace(); }