I have an Arraylist<HashMap<String,String>>
with three records . I am displaying them using a CustomAdapter
which extends BaseAdapter
.
In first call I am getting three records in gridview.
In second call I am getting 3+3 = 6 records.(same 3 again)
In third call I am getting 3+3+3 = 9 calls and so on.
I used grid.invalidateViews()
. But it is not working please help.