Back to project page Android-ImageManager.
The source code is released under:
Copyright (c) 2011 Felipe Lima Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project Android-ImageManager 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.felipecsl.android.imaging; import android.graphics.Bitmap; public interface ImageManagerCallback { void onBitmapLoaded(final Bitmap bitmap, final LoadedFrom source); void onLoadFailed(final LoadedFrom source, Exception e); }