OverwatchProgress
OverwatchProgress copied to clipboard
Start and Stop
hey awesome Progress bar how do i programmatically start and Stop the progress bar?
hiveprogress.showContextMenu(); //start don't know how to stop it
private void startAnimation() {
resetAnimator();
}
private void stopAnimation() {
actualProgress = 0;
if (indeterminateAnimator != null) {
indeterminateAnimator.cancel();
indeterminateAnimator = null;
}
}
public those two method