How can I animate newly added items in ListView?

I have a adapter and when I add new items in my list I say adapter.notifyDataSetChanged(); the items are added, everything works perfectly, but my problem is I want newly added element to have some animation.

link|improve this question

64% accept rate
I've got feeling that this is not an easy task. How many items are you planning to have in your ListView? – inazaruk Jun 7 '11 at 12:19
Well I want animation to be played every time when new item is added. There is something that changes my data randomly and adapter.notifyDataSetChanged(); i called every second, so if there is new data than it is presented on the listview that works perfectlly but problem is that there is no animation . . . – Lukap Jun 7 '11 at 12:29
The reason why I asked about the amount of items, is because you will have more chances to animate your additions to LinearLayout. But this is only feasible if you have fairly limited number of views. If you are planning to have say 50+ items in the list, then LinearLayout becomes way to expensive. – inazaruk Jun 7 '11 at 12:40
well having animated Linearlayout is nice if it is possible, I mean linear layout inside listview as item. Do you know how can I do that ? – Lukap Jun 7 '11 at 14:02
No, I meant LinearLayout instead of ListView. – inazaruk Jun 7 '11 at 14:06
feedback

2 Answers

Adding this kind of animations is harder than I first thought of. There are two ways depending of the kind of animation you are trying to achieve.

This is quite a hack but the only way I found to add an animation to ListView's children is the following:

You can try notifying the adapter the id of the item you are willing to delete and call adapter.notifyDataSetChanged();. This will generate calls to the adapter's getView() method. Inside it you can do something like:

if ( item.getId() == itemToRemove ) {
 //apply the animation
}

After the animation finished you can recall adapter.notifyDataSetChanged() to put everything in place.

link|improve this answer
feedback

Animate each added element in the getView() method of your Custom Adapter.

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;
}

And thereby achieve the Animation.

link|improve this answer
have you tried this ?, what about bindView should I override that method too ? – Lukap Jan 20 at 10:56
yes i have tried this and it works for me. i dont think u need to override the bindView method. – ASH Jan 23 at 6:16
well my problem is if I do not override the bindView method the list is very slow and sluggish, so I will have to find the way to override correctly and tho have the animation played exactly ones. Because if I override in both methods the animation sometimes is played twice – Lukap Jan 23 at 7:47
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.