为某些ListView项目设置动画

时间:2012-03-14 21:36:57

标签: android listview animation android-arrayadapter

我的目标是为某些ListView项设置动画,而无需担心getView使用自定义ArrayAdapter中新增加的列表项来删除动画。

如果我使用convertView来避免夸大新项目,则动画的顺序会随机变化。

手动缓存视图效果很好,但我怀疑这是一个很好的解决方案。更好的想法?

1 个答案:

答案 0 :(得分:4)

我所做的是在convertview上设置动画,然后在每个转换视图上停止动画。这样,如果转换视图是新的,则动画停止然后播放,如果在结束之前没有回收,则继续播放直到结束。

编辑我似乎无法找到一个示例,因此它将部分为伪代码。

在您的适配器中,您将拥有以下内容:

@Override
public View getView(int position, View convertView, ViewGroup parent) {
    final ViewHolder holder;

    if(convertView == null) {
        // setup holder
        holder = new ViewHolder();

        LayoutInflater Inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        convertView = Inflater.inflate(mResourceId, null);

        holder.image = (ImageView) convertView.findViewById(R.id.row_image);
        holder.headline = (TextView) convertView.findViewById(R.id.row_headline);

        convertView.setTag(holder);
    } else {
        // get existing row view
        holder = (ViewHolder) convertView.getTag();
    }
    // GetView is only called on new items 
    // so now we stop the previous animation and start a new
    holder.animation.stop();  // First you stop the animation
    holder.animation = new animation();  // then you create new
    holder.animation.start();  // then you start the animation.