我正在使用ObjectAnimator在谷歌地图中制作标记,但我想重用ObjectAnimator或在收到新位置时继续动画我正在使用它
public void onLocationUpdate(LatLong latLng)
{
ObjectAnimator animator =
ObjectAnimator.ofObject(marker, property, typeEvaluator,latLng);
animator.setDuration(1000);
animator.setInterpolator(new LinearInterpolator());
animator.setStartDelay(0);
animator.start();
animator.addListener(animatorEndListener);
}
我正在以1秒的间隔调用此方法我希望动画让它看起来是连续的,或者至少重复使用ObjectAnimator以防动画完成时新值来,以便它总是创建新对象