sir, how can i refresh my custom listview using baseadapter. i don\'t know what to place, or where to place it in my code. please help me. thanks in advance
I solved this issue adding this function to my custom adapter
public void newCursor(Cursor cursor) { this.cursor=cursor; this.notifyDataSetChanged(); }
From my main class I create a new cursor doing a re-query to database and then send to my custom adapter via this function.
good luck