将动画添加到Android中的列表视图

前端之家收集整理的这篇文章主要介绍了将动画添加到Android中的列表视图前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想为列表视图的项目设置动画.目前,我在添加新项目时,将过渡动画应用于列表项.但这不是我想要实现的动画.当我在当时的列表视图中添加一个新的项目时,我想要的是整个列表视图将一个位置移动到新增的项目中.

目前我使用的代码是:

set = new AnimationSet(true);

    animation = new AlphaAnimation(0.0f,1.0f);
    animation.setDuration(50);
    set.addAnimation(animation);

    animation = new TranslateAnimation(
        Animation.RELATIVE_TO_SELF,0.0f,Animation.RELATIVE_TO_SELF,-1.0f,0.0f
    );
    animation.setDuration(150);
    set.addAnimation(animation);

    LayoutAnimationController controller = new LayoutAnimationController(set,1.0f);
    l.setLayoutAnimation(controller);
    l.setAdapter(listAdaptor);

然后通过按钮onClick添加项目

l.startLayoutAnimation();

任何其他建议来实现这样的动画.

解决方法

我得到了解决方案.我在自定义适配器的getView方法中为每个添加的元素设置动画.
public View getView(int position,View convertView,ViewGroup parent) {

        View v = convertView;

        if (v == null) {
            LayoutInflater vi = (LayoutInflater) getActivity()
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.simple_list_item_1,null);
        }

        ListData o = list.get(position);
        TextView tt = (TextView) v.findViewById(R.id.toptext);

        tt.setText(o.content);

        Log.d("ListTest","Position : "+position);
       if(flag == false) {
        Animation animation = AnimationUtils.loadAnimation(getActivity(),R.anim.slide_top_to_bottom);
        v.startAnimation(animation);}
        return v;
    }

从而实现了我所说的动画.

原文链接:https://www.f2er.com/android/312081.html

猜你在找的Android相关文章