I am using this Example to Create ProgressView and It work fine. But In My SplashScreenActivity How can I Stop the ProgressView when the AsyncTask is done.And I can't found how to Stop this ProgressView. Any Help be Appreciated.
Asked
Active
Viewed 68 times
0
-
there are methods like stopSpinning() and clearAnimation() you can use them – H Raval Mar 02 '16 at 04:52
1 Answers
0
Nobody can stop the progress view!
Our only chance is to hide it with
progressView.setVisibility(View.GONE);

keith
- 3,105
- 2
- 29
- 34
-
-
It's only animated if it's visible, so no it won't be using any resources – keith Mar 02 '16 at 04:47