-
Notifications
You must be signed in to change notification settings - Fork 173
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
On restart the animation only show single Circle #4
Comments
let me check |
Thank you so much.. I am waiting. |
+1 |
3 similar comments
+1 |
+1 |
+1 |
@booncol I sent you an email. |
+1 Though, doesn't happen when pulse_startFromScratch is set to true. |
Thanks @fR0DDY. It seems that it only happens if you have the pulse_startFromScratch set t false. Even using the .setCount, only one pulse appears. Setting pulse_startFromScratch to true solved the problem. |
Pull fixes from Jeremiah's fork for fixing the restart animation issues Fix issue booncol#4 Update gradle Remove javadoc preventing jitpack from finishing builds
I've taken a fix from @jeremiahstevenson fork which seems to fix this issue. I made a few gradle updates and a fix on the javadoc to get it to build publicly on jitpack, but so far so good for me anyway. (i.e: I've got multiple counts/circles working with startFromScratch set to false and working as expected 🙏) Use this jitpack build of my last commit Or follow this link if you're not familiar with jitpack https://jitpack.io/#ahaverty/Pulsator4Droid/c31fb788db |
I have implemented your library in my project, but everything works fine. When i restart the view it give only one circle, instead of 4 circle.
private void startPulser(int color){ pulsator.stop(); // i tried without stop(). pulsator.setCount(4); pulsator.setDuration(7000); pulsator.setColor(color); pulsator.start(); }
//
The text was updated successfully, but these errors were encountered: