2

我正在 LG Eve 手机上测试我的应用程序。我有一个应用程序试图从网上下载一些东西,当它抛出一个异常时,它应该启动一个警报对话框,说有一个错误。当手机没有 wifi 信号时,程序在 builder.create() 处崩溃(见下面的代码)。但是,当有 wifi 信号时,异常是由其他东西引发的(例如,url 中的拼写错误),对话框会以它应该的方式启动。关于为什么会这样的任何线索?

onCreateDialog 的代码:

@Override
protected Dialog onCreateDialog(int id){

    Dialog d = null;
    switch (id){

    case DIALOG_DATA_ERROR_ID:

        AlertDialog.Builder builder = new AlertDialog.Builder(this);
        builder.setMessage(getResources().getString(R.string.error_data));
        builder.setCancelable(false);
        builder.setNeutralButton("OK", new DialogInterface.OnClickListener(){

            public void onClick(DialogInterface d, int id){

                d.cancel();
            }
        });
        d = builder.create();
        break;      
    }
    return d;
}

调用 showDialog 的 AsyncTask 代码:

private static class DownloadJSONTask extends AsyncTask<String, Void, String>{


    private ProgressDialog dialog;
    private Activity parent;
    private JSONParserInterface jsonParser;

    public DownloadJSONTask(Activity parent, JSONParserInterface jsonParser){ 
        this.parent = parent;
        this.jsonParser = jsonParser;
    }

       protected void onPreExecute(){

          dialog = ProgressDialog.show(parent, "Loading", "Please Wait...", true);

       }

       protected String doInBackground (String... urls){               

           try {

             return HttpHelper.getResponse(urls[0]);

           }catch (Exception e){
               dialog.cancel();
               parent.showDialog(BoomSetListActivity.DIALOG_DATA_ERROR_ID);
           }

           return null;

       }

       protected void onPostExecute(String json){
           dialog.cancel(); 
           if (jsonParser != null) jsonParser.parse(json);
       }


}
4

1 回答 1

6

不要在 doInBackground 显示对话框。该方法不在 UI 线程上运行。尝试在 onPostExecute 或 onProgressUpdate 显示错误对话框。

于 2010-08-18T22:33:53.067 回答