I am calling a webservice through asynctask, to call the webservice i am calling one method named makeRequest() in
webservice
asynctask
makeRequest()
You should update your List like this.
Activity_name.this.runOnUiThread(new Runnable() { @Override public void run() { list = (ArrayList>) result; this.adapter.setList(list); this.adapter.notifyDataSetChanged(); } });