Android-Loading-Animation icon indicating copy to clipboard operation
Android-Loading-Animation copied to clipboard

how to disable??

Open OwenChen0911 opened this issue 2 years ago • 0 comments

I've added the animation, that's great.

But how to disable it?

OwenChen0911 avatar May 31 '22 08:05 OwenChen0911

Add this Function in your class then private void setVisibilityOn(boolean isVisible) { if (isVisible) { loadingAnimation.setVisibility(View.VISIBLE); } else { loadingAnimation.setVisibility(View.GONE); } }

NavjotSinghSeraphic avatar Nov 01 '23 07:11 NavjotSinghSeraphic