public interface CircularProgressViewListener
| Modifier and Type | Method and Description |
|---|---|
void |
onAnimationReset()
Called when resetAnimation() is called.
|
void |
onModeChanged(boolean isIndeterminate)
Called when you switch between indeterminate and determinate modes.
|
void |
onProgressUpdate(float currentProgress)
Called when setProgress(float currentProgress) is called (determinate only)
|
void |
onProgressUpdateEnd(float currentProgress)
Called when this view finishes animating to the updated progress.
|
void onProgressUpdate(float currentProgress)
currentProgress - The progress that was set.void onProgressUpdateEnd(float currentProgress)
currentProgress - The progress that was set and this view has reached in its animation.void onAnimationReset()
void onModeChanged(boolean isIndeterminate)
isIndeterminate - true if mode was set to indeterminate, false otherwise.