In my project, I have AsyncTask that retrieves some JSON data from the network from which I create
List<Map<String,String>> typesCategory = new ArrayList<Map<String, String>>();
Now I need to pass this list on to my next intention. If you look at the API, I donโt see methods that support list passing. What is the best way to do this?
protected void onPostExecute(List result) { progress.dismiss(); Intent action = new Intent(this, ListTypeActivity.class); action.putExtra("data", result); }
Byron source share