You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi Fedor,
Thank for your project, it's simple but awesome.
I have small question that:
How can I show a Toast or do somethings else when finished load image from internet or cache?
The text was updated successfully, but these errors were encountered:
public class ImageLoader{
//xxx
ImgLoadListener loadListener;
//xxx
//Used to display bitmap in the UI thread
class BitmapDisplayer implements Runnable
{
//xxx
if(bitmap!=null){
loadListener.onFinished();
photoToLoad.imageView.setImageBitmap(bitmap);
}
//xxx
}
public void setImgLoadListenerListener(ImgLoadListener load){
this.loadListener = load;
}
public interface ImgLoadListener {
public void onFinished() ;
}
}
Hi Fedor,
Thank for your project, it's simple but awesome.
I have small question that:
How can I show a Toast or do somethings else when finished load image from internet or cache?
The text was updated successfully, but these errors were encountered: