在我的应用程序中,我使用 url 从 url 加载图像AsyncTask
,而图像加载时,ImageView
是空的。那么,在加载时,我如何在那里显示微调器/加载进度?
问问题
727 次
1 回答
0
这是一个示例代码:
public class BackgroundAsyncTask extends AsyncTask<Void, Void, Void> {
private ProgressDialog progressdialog;
@Override
protected void onPreExecute(){
super.onPreExecute();
progressdialog= new ProgressDialog(yourContext);
progressdialog.setMessage("Downloading Image");
progressdialog.show();
}
@Override
protected Void doInBackground(Void... params) {
//Do whatever you have to here
}
@Override
protected void onPostExecute(String result){
super.onPostExecute(result);
progressdialog.dismiss();
}
}
于 2013-02-18T16:24:02.087 回答