jlmd / AnimatedCircleLoadingView

An animated circle loading view
Apache License 2.0
1.17k stars 210 forks source link

onAnimationEnd never called #30

Open pratikbutani opened 6 years ago

pratikbutani commented 6 years ago

Why this animation listener never called?

 circleLoadingView.setAnimationListener(new AnimatedCircleLoadingView.AnimationListener() {
        @Override
        public void onAnimationEnd(boolean success) {
            if (success) {
                circleLoadingView.setVisibility(View.GONE);
                txtChallenge.animateText(challenge);
            }
        }
    });