I have a listview and I am using list.add(mylist) and adapter.notifydatasetchanged() ,its adding the items below the existing list ,How Do I add the Items on Top of the List.
Eg: If I receive new msgs It should be on top of the existing list.
Thanks in Advance.
Use
add(int index, E object). Whereindex = 0.