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

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

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

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

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

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

编辑我似乎无法找到一个例子,所以它将部分伪代码.

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

  1. @Override
  2. public View getView(int position,View convertView,ViewGroup parent) {
  3. final ViewHolder holder;
  4. if(convertView == null) {
  5. // setup holder
  6. holder = new ViewHolder();
  7. LayoutInflater Inflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  8. convertView = Inflater.inflate(mResourceId,null);
  9. holder.image = (ImageView) convertView.findViewById(R.id.row_image);
  10. holder.headline = (TextView) convertView.findViewById(R.id.row_headline);
  11. convertView.setTag(holder);
  12. } else {
  13. // get existing row view
  14. holder = (ViewHolder) convertView.getTag();
  15. }
  16. // GetView is only called on new items
  17. // so now we stop the prevIoUs animation and start a new
  18. holder.animation.stop(); // First you stop the animation
  19. holder.animation = new animation(); // then you create new
  20. holder.animation.start(); // then you start the animation.

猜你在找的Android相关文章