Logcat:
06-28 22:21:11.031: E/AndroidRuntime(1282): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. [in ListView(16908298, class android.widget.ListView) with Adapter(class android.widget.ArrayAdapter)]
コード:
protected void onPostExecute(Void v) {
items.add(NewItem);
Collections.sort(items);
adapter.notifyDataSetChanged();
}
質問:ListViewもどこで更新すると思いますか?