我正在AsyncTask中加载一些JSON数据,因为我想在UI中显示下载进度。下载工作正常,并且定期调用publishProgress方法(每100个JSON对象),但onProgressUpdate和onPostExecute实际上不会被执行,直到完成所有后台操作(即所有需要doInBackground结果的计算)。
Log看起来大致如下:
AsyncTaskCaller.downloadWithAsyncTask: executing AsyncTask
MyAsyncTask.onPreExecute: AsyncTask started
MyAsyncTask.doInBackground: Download 0%
MyAsyncTask.doInBackground: Download 10%
...
MyAsyncTask.doInBackground: Download 90%
MyAsyncTask.doInBackground: Download 100%
AsyncTaskCaller.processResult: Results processed
// all background calculations finished
MyAsyncTask.onProgressUpdate: Download 0%
MyAsyncTask.onProgressUpdate: Download 10%
...
MyAsyncTask.onProgressUpdate: Download 90%
MyAsyncTask.onProgressUpdate: Download 100%
MyAsyncTask.onPostExecute: AsyncTask ended
MyActivity.updateUiAfterDownload
这就是我的代码调用数据的方式:
MyActivity:
final Runnable mSynchroniseContacts = new Runnable() {
public void run() {
/** get oAuth tokens for synchronisation */
MyApp app = (MyApp) getApplication();
OpenAuthTokens myTokens = app.getAccessTokens();
// mockup code to load contacts
MyContact[] contacts = AsyncTaskCaller.loadContacts(myTokens, MyActivity.this);
}
};
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.synchronisation_activity);
statusText = (TextView) findViewById(R.id.synchronisation_status_text);
mSynchroniseContacts.run();
}
AsyncTaskCaller:
private static JSONArray records = null;
public static MyContact[] loadContacts(OpenAuthTokens myTokens, Context context) {
MyAsyncTask contactDownloader = new MyAsyncTask(context, myTokens) {
@Override
protected void onPostExecute(JSONArray result) {
super.onPostExecute(result);
records = result; // assigning result to static class variable, to avoid calling contactDownloader.get(), which apparently blocks the UI thread according to http://stackoverflow.com/questions/5583137/asynctask-block-ui-threat-and-show-progressbar-with-delay
}
};
contactDownloader.execute(url);
// wait until contacts are downloaded
while(!SforceContactDownloadTask2.isFinished()) {
try {
Thread.sleep(50);
} catch (InterruptedException e) {
Log.e(TAG, e.getCause() + " - " + e.getMessage());
e.printStackTrace();
}
}
// some code to convert JSONArray records into MyContact[] myContacts
return myContacts;
}
MyAsyncTask(未明确粘贴上面记录的代码):
@Override
protected void onPreExecute() {
finished = false;
}
@Override
protected void onPreExecute() {
finished = false;
}
@Override
protected JSONArray doInBackground(String... url) {
StringBuffer dataString = new StringBuffer();
try {
boolean isOnline = ConnectivtiyChecker.isInternetAvailable(context);
if (isOnline) {
/** send as http get request */
URL urlObject = new URL(url[0]);
HttpURLConnection conn = (HttpURLConnection) urlObject.openConnection();
conn.addRequestProperty("Authorization", "OAuth " + myTokens.get_access_token());
/** prepare response reader */
JSONArray records = null;
byte data[] = new byte[MAX_BUFFER_SIZE];
int currentByteReadCount = 0;
InputStream stream = null;
BufferedInputStream input = null;
try {
/** get response input stream */
stream = conn.getInputStream();
input = new BufferedInputStream(stream);
/** read response from input stream */
while ((currentByteReadCount = input.read(data)) != -1) {
String readData = new String(data, 0, currentByteReadCount);
dataString.append(readData);
//code to figure progress out
// publishing the progress (every 5%)...
if (progress % (total / 20) == 0 ) {
publishProgress((int)(progress * 100 / total));
}
}
} catch (Exception e) {
Log.e(TAG, e.getCause() + " - " + e.getMessage());
e.printStackTrace();
} finally {
// close streams
if (input != null) {
input.close();
}
if (stream != null) {
stream.close();
}
}
/** transform response into JSONArray */
String result = dataString.toString();
JSONObject object = (JSONObject) new JSONTokener(result).nextValue();
records = object.getJSONArray("records");
return records;
} else {
return null;
}
} catch (Exception e) {
Log.e(TAG, e.getCause() + " - " + e.getMessage());
e.printStackTrace();
return null;
}
}
@Override
protected void onProgressUpdate(Integer... changed) {
Log.d(TAG, "Download " + changed[0] + "%");
}
@Override
protected void onPostExecute(JSONArray result) {
finished = true;
}
public static boolean isFinished() {
return finished;
}
任何想法如何解除阻止UI?
答案 0 :(得分:4)
您似乎在主应用程序线程上调用了Thread.sleep()
。不要这样做。请编写您的应用程序以使其正确异步。