只是为了理解。
目前我有一个像这样工作的异步任务:
String doInBackground(Void... params)
//Downloads a JSON and returns it to the onPostExecute().
void onPostExecute(String response)
//Parses the JSON which has an array of stuff and insert into sqlite.
Call changeCursosr and notifyDataSetChanged.
这是处理列表视图的插入和刷新的正确方法吗?目前,每当它执行后,我都会遇到轻微的挂起。我应该在 doInBackground 中解析和插入数据吗?