AnimatedCircleLoadingView
AnimatedCircleLoadingView copied to clipboard
onAnimationEnd never Triggered
I'm trying to implement the animation, and make it dissapere when it ends but it is never called.
downloadView.setAnimationListener(new AnimatedCircleLoadingView.AnimationListener() {
@Override
public void onAnimationEnd(boolean success) {
downloadView.setVisibility(View.GONE);
}
});