Not able to set SwipeFlingAdapterView from array adapter
You just need to notify the updated data set to the adapter
by using
notifyDataSetChanged();
notifyDataSetInvalidated()
i have solved this.
I have just put the - arrayAdapter.notifyDataSetChanged();
onPostExecute.
My new updated code on onPostExecute :
protected void onPostExecute(String file_url) {
pDialog.dismiss();
arrayAdapter = new ProductAdpater(context, al);
flingContainer.setAdapter(arrayAdapter);
arrayAdapter.notifyDataSetChanged();
}
It is done.