Back to project page Fabby-Chat.
The source code is released under:
MIT License
If you think the Android project Fabby-Chat 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.fabbychat.utils; import android.graphics.drawable.Drawable; public interface DrawableProducer { abstract public Drawable getDrawable(); abstract public String getKey(); // used by Drawable Manager to cache }