Package com.aerisweather.aeris.tiles
Interface LoadTileAnimationTask.LoadTileProgressBar
-
- All Known Implementing Classes:
AnimationControlView
- Enclosing class:
- LoadTileAnimationTask
public static interface LoadTileAnimationTask.LoadTileProgressBar
Interface to pass to theLoadTileAnimationTask.withProgress(LoadTileProgressBar)
. This allows the interface to receive events on the status of the animation loading.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
hideAnimProgress()
Shows that the animation has stopped.void
setAnimProgress(int current, int max)
Sets the progress of the animation tile loading.void
showAnimProgress()
Shows the start of the animation.
-
-
-
Method Detail
-
showAnimProgress
void showAnimProgress()
Shows the start of the animation.
-
hideAnimProgress
void hideAnimProgress()
Shows that the animation has stopped.
-
setAnimProgress
void setAnimProgress(int current, int max)
Sets the progress of the animation tile loading.- Parameters:
current
- The current progress of the animation loading.max
- The total number of animations to load.
-
-