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.graphics.drawable.async; /*from ww w .j a va 2s.c om*/ import android.graphics.drawable.Drawable; /** * Interface which represents a {@link Drawable} that is loaded asynchronously. * * @author Dylan James * * @param <T> The type of the key of the {@link AsyncDrawableTask} that does * the work for this drawable. */ public interface AsyncDrawable<T> { public AsyncDrawableTask<T> getTask(); }