我有一个要执行以下操作的应用程序:
- 显示一个带有按钮和 TextView 的活动。
- 用户单击按钮,应用程序会显示一个进度对话框。
- 应用程序调用 Web 服务来获取列表。
- 进度对话框被隐藏,并出现一个列表选择对话框以显示检索到的列表。
- 用户选择列表中的一项。
- 项目显示在 TextView 中。
问题是会发生这种情况:
- 显示一个带有按钮和 TextView 的活动。
- 用户单击按钮和按钮状态更改为选中。
- 几秒钟后,列表选择对话框出现,显示检索到的列表。
- 用户选择列表中的一项。
- 进度对话框显示几秒钟,然后隐藏。
- 项目显示在 TextView 中。
Web 服务在 AsyncTask 中执行,进度对话框显示在 onPreExecute() 方法中,并在 onPostExecute() 方法中关闭:
public class WebService extends AsyncTask<Void, Void, Boolean> {
public void onPreExecute() {
_progressDialog = ProgressDialog.show(_context, "", message);
}
protected Boolean doInBackground(Void... params) {
try {
// Execute web service
}
catch (Exception e) {
e.printStackTrace();
}
return true;
}
protected void onPostExecute(Boolean result) {
_progressDialog.hide();
}
}
执行 Web 服务并显示对话框的代码:
WebService ws= new WebService();
ws.execute();
// Web service saves retrieved list in local db
// Retrieve list from local db
AlertDialog.Builder db = new AlertDialog.Builder(context);
db.setTitle("Select an Item");
ArrayAdapter<String> listAdapter = new ArrayAdapter<String>(context,
android.R.layout.simple_selectable_list_item, list);
db.setAdapter(listAdapter, null);
db.show();
我是否需要在代码中添加一些内容以确保进度对话框显示在列表选择对话框之前?
先感谢您。