我想知道你是如何检测动画结束的。 这是动画:
image.animate().xBy(screenWidth-200).setDuration(5000).start();
答案 0 :(得分:1)
您是否尝试在动画结束后执行某些操作?如果是这样,请尝试修改您的代码,如下所示:
image.animate()
.xBy(screenWidth-200)
.setDuration(5000)
.withEndAction(new Runnable() {
@Override
public void run() {
// Do something when animation ends
}
})
.start();
答案 1 :(得分:1)
添加index lat lon ws_daily_max
1 1.895464e+06 -2.248925e+06 NaN
2 1.895464e+06 -2.248925e+06 NaN
:
AnimatorListener
答案 2 :(得分:0)
addListener(AnimatorListener)覆盖方法