我有一个应用程序,它将特定日期的数据作为来自Web服务器的响应,并根据已经来的数据(数量/时间)绘制o / p图。
现在我正在调用Web服务器作为异步任务。
我还可以跨越多个屏幕(前一天/第二天)多次调用Web服务器(多个异步任务),以便从服务器获取数据。
问题是当flings(异步任务)数量增加时,应用程序显示ANR。
有没有更好的方法来处理这些场景,而不是为每个Web服务器调用(fling)创建异步任务。
添加部分代码:
if(e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE
&& Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
valuesDayWithTime=onStart(datePrevious);
}
public GraphView onStart(String date){
urlFinal=createUrl();
new DownloadDataTask(this).execute(urlFinal);
}
private class DownloadDataTask extends AsyncTask<String, Integer, Long> {
YieldActivity yActivity;
ProgressBar pBar ;
DownloadDataTask(YieldActivity act){
yActivity=act;
}
protected void onPreExecute() {
relLay=(RelativeLayout) findViewById(R.id.graphView);
pBar
= new ProgressBar(yActivity);
LayoutParams lp =new LayoutParams(LayoutParams.FILL_PARENT,LayoutParams.FILL_PARENT);
pBar.setLayoutParams(lp);
pBar.setMax(100);
relLay.removeAllViews();
relLay.addView(pBar);
}
protected Long doInBackground(String... urls) {
int totalCount = urls.length;
for (int i = 0; i < totalCount; i++) {
publishProgress((int) ((i / (float) totalCount) * 100));
downloadFromUrl(urls[i]);
}
return (long) totalCount;
}
protected void onProgressUpdate(Integer... progress) {
Log.i(progress[0] +"%");
}
protected void onPostExecute(Long result) {
graphViewDay=calculate(dateNow,valuesDayWithTime);
relLay.removeView(pBar);
relLay.addView(graphViewDay);
}
}
public void downloadFromUrl(String fromURL) {
try {
getHttpResponse(fromURL.toString());
parseResponse();
}
} catch (IOException e) {
e.printStackTrace();
} catch (XmlPullParserException e) {
e.printStackTrace();
}
}
答案 0 :(得分:2)
只要您在主线程上创建AsyncTask对象并从主线程调用它们,就不应该有任何问题。你能为你的AsyncTask发布一些伪代码吗? 您可以在AsyncTask here上找到更多信息。