2 つの要素を持つマップを返す AsyncTask があります。私はこのようにしました:
Map<String, ArrayList<String>> result = new HashMap<String, ArrayList<String>>();
result.put("usernames", usernames);
result.put("messages", messages);
return result;
これを別のアクティビティで Async と呼びます。
new ReadChat().execute(response);
非同期タスクから (からdoInBackground()
) この他のアクティビティで返されたデータを取得するにはどうすればよいですか?