0

最近我写了一个函数。它是关于每个列表项中的刷新按钮。我想要的是单击按钮或列表项,刷新按钮开始旋转。请求完成时停止。我使用动画如下:

<?xml version="1.0" encoding="UTF-8"?>
<rotate xmlns:android="http://schemas.android.com/apk/res/android"
    android:duration="1000"
    android:fillAfter="true"
    android:fromDegrees="0"
    android:interpolator="@android:anim/linear_interpolator"
    android:pivotX="50%"
    android:pivotY="50%"
    android:repeatCount="infinite"
    android:toDegrees="358" />

和一些源代码在这里:

public void refresh(View v) {

    Animation rotation = AnimationUtils.loadAnimation(mContext,
            R.anim.rotate);
    rotation.setFillAfter(true);
    v.startAnimation(rotation);

}

public void completeRefresh(View v) {
    v.clearAnimation();
}

当请求完成时,我调用 notifyDataSetChanged() 来刷新 LiseView。

问题是按钮确实在旋转。但是当我第二次点击它时。它在旋转,但有点模糊。像这样:

在此处输入图像描述

有什么建议么?多谢。

4

1 回答 1

0

在您的第二次(以及随后的点击)中最有可能发生的是动画再次在其上运行。

在您当前的实现中,尝试setTag(...)像这样使用:

public void refresh(View v) {
    if(v.getTag() != null && (boolean)v.getTag()) {
        //do nothing, since we are setting the tag to be true once pressed
    } else {
        //this view hasn't been clicked yet, show animation and set tag
        v.setTag(true);
        Animation rotation = AnimationUtils.loadAnimation(mContext, R.anim.rotate);
        rotation.setFillAfter(true);
        v.startAnimation(rotation);
    }
}

在您的适配器中,您应该跟踪正在为哪些列表项设置动画(我假设可以同时单击多个项目)。一旦您知道“请求”已完成,您可以使用正确的项目更新适配器,然后调用notifyDataSetChanged()

于 2014-11-11T05:35:35.017 回答