I have an app which displays data in a fragment(uses webservice). After login, fragment fetches data from json and add to database, after that I want to populate it in my fragme
try to replace this line
this.issueList = val;
with
this.issueList.clear(); this.issueList.addAll(val);
in your BaseAdapter
BaseAdapter