0

我在异步任务的 doInBackground 方法中从 sqlite 获取图像名称。我在 pre Execution 中开始了进度对话,并在 post execution 方法中关闭了对话。但问题是加载器没有正确移动。

4

1 回答 1

0

试试这个代码: -

class MyAsyncTask extends AsyncTask<String, Integer, ArrayList<HashMap<String, String>> >   {
  private ProgressDialog progressDialog = new ProgressDialog(Catalogue.this);

    @Override
    protected void onPreExecute() {
       progressDialog.setMessage("Loading, Please Wait .....");
       progressDialog.show();}
于 2012-11-02T07:23:32.087 回答