gpt4 book ai didi

java - Value Animator结束时如何制作方法?

转载 作者:行者123 更新时间:2023-12-02 04:04:42 26 4
gpt4 key购买 nike

正如我在这里读到的:http://developer.android.com/reference/android/animation/ValueAnimator.html

我仍然不明白如何制作 onAnimationEnd 监听器或 ValueAnimator 动画结束时要做的事情。里面有一部分说:

enter image description here

谁能用一些示例代码解释一下?谢谢!

最佳答案

你可以做类似的事情

ValueAnimator anim = ValueAnimator.ofInt(progress, seekBar.getMax());
anim.setDuration(Utility.setAnimationDuration(progress));
anim.addUpdateListener(new AnimatorUpdateListener()
{
@Override
public void onAnimationUpdate(ValueAnimator animation)
{
int animProgress = (Integer) animation.getAnimatedValue();
seekBar.setProgress(animProgress);
}
});
anim.addListener(new AnimatorListenerAdapter()
{
@Override
public void onAnimationEnd(Animator animation)
{
// done
//your stuff goes here
}
});
anim.start();

关于java - Value Animator结束时如何制作方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34468158/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com