We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e9f49b9 commit dd3b6fbCopy full SHA for dd3b6fb
library/src/main/java/com/wang/avi/indicator/BaseIndicatorController.java
@@ -76,19 +76,16 @@ public void setAnimationStatus(AnimStatus animStatus){
76
switch (animStatus){
77
case START:
78
if (!isRunning){
79
- Log.d("AnimStatus","START");
80
animator.start();
81
}
82
break;
83
case END:
84
if (isRunning){
85
- Log.d("AnimStatus","END");
86
animator.end();
87
88
89
case CANCEL:
90
91
- Log.d("AnimStatus","CANCEL");
92
animator.cancel();
93
94
0 commit comments