Actually, the add() method from your Adapter is "yours"...
means you made the code in it, and eventually you added item to the
Object that is feeding your Adapter


public class MyAdapter extends BaseAdapter {

private ArrayList<Order> orders;

[...]

public void add(Order tmporder) {
                this.personnes.add(tmporder);
        }

}

If you don't want to keep the old values, you have to make the reset
or something like that....

Alain
www.oxiane.com

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words "REMOVE ME" as the subject.

Reply via email to