0

如果服务器上有任何新内容,我有一个启动屏幕检查 URL。如果显示我希望向应用程序用户显示 AlertDialog,以便根据用户的操作,即如果是,则从服务器下载新内容并将其获取到数据库,否则如果不从服务器加载应用程序的内容。

但是我无法在 AsyncTask 中使用警报对话框 我的代码段如下:

protected String doInBackground(String... mode){
  /* I AM QUERY MY DATABASE FOR THE PREVIOUS CONTENT(SAY CONTENT 1, CONTENT 2);
  * then i start my connection to the server which has an xml file with the content
  * info (say content 3), at this stage .
  * i Check certain condition here,
  * say if result ==0 then i wish to display an alertdialog.
  * I used an alert dialog and i get some error. Stating use Looper or Handler.

  * Can anyone help me with this?
  */  
}

已编辑

所以在

doInBackGround(String... mode){
  if(result==0){
    // how do i implement this alert show that if the dialog appears and on clicking Yes i wish to exectute the URL handling part below        

    AlertDialog.Builder alert = new AlertDialog.Builder(context);
    alert.setTitle("Updates Found");
    alert.setMessage( "New Updates for has been found.\n Would you like to download ?\n"
              + "Whats the update: Checking "+pld.result.get(i).get( "issue" ));
    alert.setIcon(android.R.drawable.ic_dialog_info);                              
    alert.setPositiveButton(android.R.string.yes,
      new DialogInterface.OnClickListener() { 
        public void onClick(DialogInterface dialog, int id) { 
          try { 
            URL url = new URL(pld.result.get(i).get("link"));
            ManageZipFile.getArchive(url,pld.result.get(i).get("issue"), file); 
          } 
          catch (Exception ex) { 
            Log.d(TAG, "Exception from URL"+ ex.getMessage()); 
          }

          progressState += updateProgressBar(20);
          pld.saveCoverData(pld.result.get(i).get("issue"));
          try { 
            pldContent = new PullLoadData(getString(R.string.files_path) 
                                          + pld.result.get(i).get("issue") 
                                          + "/contents.xml",context); 
            pldContent.getNewsItems();
            progressState += updateProgressBar(20); 
          } 
          catch(XmlPullParserException e) { 
            Log.e(TAG, "GetNEWSITEM "+ e.getMessage()); 
          } 
          catch (IOException e) { 
            Log.e(TAG, "XML FIle not found" + e.getMessage()); 
          } 
        } 
     });

     alert.setNegativeButton(android.R.string.no, 
       new DialogInterface.OnClickListener() {
         public void onClick(DialogInterface dialog, int arg1) { 
           dialog.dismiss();
       }
     }); 

     AlertDialog showAlert = alert.create();
     showAlert.show();
   }
 }
4

2 回答 2

5

这是因为该方法doInBackground在非 UI 线程上运行,并且AlertDialog需要在 UI 线程上显示。

要解决您的问题,请将您的代码移至 中AlertDialog的方法onProgressUpdateAsyncTask然后当您要显示来自的Dialog调用publishProgress()doInBackground

protected String doInBackground( String... mode ) {
  if( something )
    //Conditions for showing a Dialog has been met
}

protected void onProgressUpdate( Void... params ) {
  //Show your dialog.
}

如果您需要将某种变量/数据传递给对话框,您可以传递您在其中声明的数据类型 - 您可以通过 - 方法传递的参数类型在extends AsyncTask<Params, Progress, Result>哪里。ProgresspublishProgress( myVariable )

于 2011-11-10T08:11:17.147 回答
3

UI 线程意味着它直接与您的 UI 相关联。您不能执行诸如网络数据获取、磁盘访问等需要在您的 UI 线程中进行大量处理时间的操作。它们应该在单独的线程中完成。

AsyncTask有助于在单独的线程中执行这些操作,否则可能会导致臭名昭著的 ANR 错误。(应用程序无响应)。

AsyncTask 包含诸如此类的方法,onPreExecute() onPostExecute() onProgressUpdate() ,doInBackground ()您可以从中访问 UI 线程onPreExecute() onPostExecute() onProgressUpdate()。需要较长处理时间的操作应在doinbackground().

我无法理解您的问题的功能需求,但如果您想在数据提取操作Alert Dialog 之前显示,请从 onPreExecute() 显示, 或者如果您想在数据提取后显示,请从 onPostExecute() 执行。

于 2011-11-10T09:19:52.537 回答