gpt4 book ai didi

java - 来自回调/监听器的增量循环

转载 作者:行者123 更新时间:2023-11-30 08:51:12 25 4
gpt4 key购买 nike

我正在尝试从回调中递增我的 for 循环,我不希望它们递增,除非动画已经结束。不幸的是,我遇到了一个问题,它建议将变量(J 和 I)设置为最终变量,然后说我不能递增它们,因为它们是封闭的。”

在调用 onAnimationEnd 时,如何增加 i 和 j 变量?

    public static void animateMarkerToICSNew(final Marker marker, AnimationRouteObj animationRouteObj) {
List<CoordsTimePair> mCoordsTimePairList = animationRouteObj.getCoordsTimePairList();

for (int i = 0; i < mCoordsTimePairList.size();) {
CoordsTimePair mCoordsTimePair = mCoordsTimePairList.get(i);
int timeInMS = (mCoordsTimePair.getSeconds() * 1000);
LinkedHashSet<LatLng> latlngHashSet = mCoordsTimePair.getLatlngHashSet();
final List<LatLng> latlngList = new ArrayList<LatLng>(latlngHashSet);
for (int j = 0; j < latlngList.size();) {

final LatLngInterpolator latLngInterpolator = new Linear();
latLngInterpolator.interpolate(1, marker.getPosition(), latlngList.get(j));

TypeEvaluator<LatLng> typeEvaluator = new TypeEvaluator<LatLng>() {
@Override
public LatLng evaluate(float fraction, LatLng startValue, LatLng endValue) {
return latLngInterpolator.interpolate(fraction, startValue, endValue);
}
};
Property<Marker, LatLng> property = Property.of(Marker.class, LatLng.class, "position");
ObjectAnimator animator = ObjectAnimator.ofObject(marker, property, typeEvaluator, latlngList.get(j));
animator.setDuration(timeInMS);
animator.addListener(new AnimatorListener() {

@Override
public void onAnimationStart(Animator animation) {

}

@Override
public void onAnimationRepeat(Animator animation) {
// TODO Auto-generated method stub

}

@Override
public void onAnimationEnd(Animator animation) {
//INCREMENT INSIDE HERE

}

@Override
public void onAnimationCancel(Animator animation) {
// TODO Auto-generated method stub

}
});
animator.start();
}
}
}

我收到的错误无法引用在封闭范围内定义的非最终局部变量 j(这是在我将变量声明为最终变量之前)

最终局部变量 j 无法赋值,因为它是在封闭类型中定义的(这是在我将变量分配为最终变量之后)

最佳答案

不幸的是,正如您现在设置的那样,这将不起作用。正如您的错误告诉您的那样,除非它们是最终的,否则您不能从内部类访问这些变量。我建议做的是从 for 循环中获取所有代码并将其移动到一个单独的方法中。然后,您可以使用 List<CoordsTimePair> 调用该方法对象和您希望设置动画的对象的索引。例如:

private void animateCoords(final List<CoordsTimePair> mCoordsTimePairList, final int i, final int j) {
CoordsTimePair mCoordsTimePair = mCoordsTimePairList.get(i);

// ... insert the rest of your code from the for loop

animator.addListener(new AnimatorListener() {
@Override
public void onAnimationEnd(Animator animation) {
if (j < latlngList.size() - 1)
animateCoords(mCoordsTimePairList, i, j + 1);
else if (i < mCoordsTimePairList.size() - 1)
animateCoords(mCoordsTimePairList, i + 1, 0);
}

这不会完全像现在这样工作,但您了解总体思路吗?这样,您不需要 for 循环或增加最终变量/访问内部类中的非最终变量。您对此方法的第一次调用是 animateCoords(mCoordsTimePairList, 0, 0);

关于java - 来自回调/监听器的增量循环,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30669992/

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