AnimatedCircleLoadingView icon indicating copy to clipboard operation
AnimatedCircleLoadingView copied to clipboard

onAnimationEnd never called

Open pratikbutani opened this issue 7 years ago • 0 comments

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);
            }
        }
    });

pratikbutani avatar Aug 31 '18 11:08 pratikbutani