-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Animation Functionality #43
Comments
Animation? What kind of animation? |
like when activity starts that progress bar goes from 0 to X %. Timer timer = new Timer();
timer.schedule(new TimerTask() {
@Override
public void run() {
activity.runOnUiThread(new Runnable() {
@Override
public void run() {
if(progressBar.getProgress() < maxPercent) {
progressBar.incrementProgressBy(1);
}
}
});
}
}, 1000, 20); One more thing, why is last release 1.2 from 2014, there are no attributes like custom:progress_unreached_bar_height="4dp"
custom:progress_reached_bar_height="8dp"
custom:progress_text_size="16dp"
custom:progress="0" in current version 1,2 |
Transition animation will be supported in next version. Currently not support. |
Thanks for your advice. |
Thanks! Nice Work. Is there any reason that last release is from 2014. What is the latest version that should be used in gradle? |
Ha, there happened a lot of things since 2014. Too busy to take care my open source projects. But now, I think I'm back. 🎉 |
There is a PR #35 which archived what you want, but I can't merge it, because It may get error or bad effect in some cases. It's not perfect enough. |
BTW. You can always get the version info here : http://search.maven.org/#search%7Cga%7C1%7Cg%3A%22com.daimajia.numberprogressbar%22 |
is there a way to tell gradle to use last commit and not release 1.2? |
@ivanstojkovicapps Change 1.2 -> 1.1 |
Thanks, i tried this
|
Oh, it's an old bug, better not use 1.1 anymore. |
so you suggest: compile 'com.daimajia.numberprogressbar:library:1.2' |
@ivanstojkovicapps which attribute? |
|
none of those is working and there are no methods to set it programatically |
xmlns:custom="http://schemas.android.com/apk/res-auto" |
thanks, that was set wrong! Great! |
Version 1.3 has been released, please try the latest version of this lib. Lots of issues has been fixed. |
thanks already got it! |
This thread will be closed, the feature will be archived in next version, thanks for your feedback. Have a nice day. |
@daimajia Hey did animation functionality get completed? If so, how does one use it? |
Hi,
is there any implemented animation functionality?
best regards Ivan
The text was updated successfully, but these errors were encountered: