android – 为某些ListView项目设置动画

前端之家收集整理的这篇文章主要介绍了android – 为某些ListView项目设置动画前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我的目标是通过在自定义ArrayAdapter中用新增加的列表项替换列表项来动画某些ListView项,而不必担心getView搞乱动画.

如果我使用convertView来避免膨胀新项目,动画的顺序会随机变化.

手动缓存视图工作正常,但我怀疑这是一个很好的解决方案.好主意?

最佳答案
我所做的是在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.

猜你在找的Android相关文章