2

我只是有时会出现一个错误,Activity com.prueba.omnibus.EspacialTecnico has leaked window com.android.internal.policy.impl.PhoneWindow$DecorView@41e794a0 that was originally added here 当活动完成并执行 asynctask 函数时会发生这种情况。我已经搜索过,但我不知道问题可能是什么。

当用户单击“完成”并发生错误时执行的操作。

protected Dialog onCreateDialog(int id) {
    super.onCreateDialog(id);
    switch (id) {
    case (int) DIALOG_ALERT_SALIR:
        return new AlertDialog.Builder(this)
                .setIcon(R.drawable.icon_warning)
                .setTitle(R.string.warning)
                .setMessage(R.string.confsalir)
                .setPositiveButton(R.string.alert_dialog_ok,
                        new DialogInterface.OnClickListener() {
                            public void onClick(DialogInterface dialog,
                                    int whichButton) {
                                if (batteryReceiver == null){   
                                }
                                else{
                                    try{
                                        unregisterReceiver(batteryReceiver);
                                    }catch(IllegalArgumentException iae){
                                    }
                                    batteryReceiver = null;
                                }           



                               Correccion();
                               Parseo();
                               reloj.cancel();
                               if (Titulacion.IsReachable1(getApplicationContext())){
                                new CreateResultados().execute();


                                }
                               EspacialTecnico.this.finish();
                               try {
                                    XMLResumen.escribirXMLResume();
                                } catch (FileNotFoundException e) {
                                    // TODO Auto-generated catch block
                                    e.printStackTrace();
                                }}


                       })
                .setNegativeButton(R.string.alert_dialog_cancel,
                        new DialogInterface.OnClickListener() {
                            public void onClick(DialogInterface dialog,
                                    int whichButton) {

                            }
                        })

                .create();
    }

    return null;

}

Asynctask 函数 对话框是否会产生错误?

class CreateResultados extends AsyncTask<String, String, String> {


        @Override
        protected void onPreExecute() {
            super.onPreExecute();
            pDialog = new ProgressDialog(EspacialTecnico.this);
            pDialog.setMessage("Transfiriendo...");
            pDialog.setIndeterminate(false);
            pDialog.setCancelable(false);
            pDialog.show();
        }


        protected String doInBackground(String... args) {


            List<NameValuePair> params = new ArrayList<NameValuePair>();
            params.add(new BasicNameValuePair("id", Ident.getDNI()));
            params.add(new BasicNameValuePair("nombre", Nombres.getNombre()));
            params.add(new BasicNameValuePair("tablet", Nombres.Tablet()));
            params.add(new BasicNameValuePair("fecha", Titulacion.fecha()));
            params.add(new BasicNameValuePair("test", nombre));
            params.add(new BasicNameValuePair("correctas", correctasString));
            params.add(new BasicNameValuePair("errores", fallosString));
            params.add(new BasicNameValuePair("PC", PC));



            JSONObject json = jsonParser.makeHttpRequest(url_crear_resultados,
                    "POST", params);
            Log.d("Create Response", json.toString());


            try {
                int success = json.getInt(TAG_SUCCESS);

                if (success == 1) {


                } else {

                }
            } catch (JSONException e) {
                e.printStackTrace();
            }

            return null;
        }



        protected void onPostExecute(String file_url) {
            pDialog.dismiss();
        }
    }

有没有做过什么“坏事”?谢谢您的帮助

4

3 回答 3

5

此异常通常来自活动完成时仍处于活动状态的对话框。

onPreExecute()您创建一个新对话框时,但它可能pDialog已经包含对活动对话框的引用。一些解决方法:

  • pDialog == null在创建一个新的之前检查。解雇后分配null给。pDialog

  • 如果pDialog != nulldismiss()它首先在创建一个新对话框之前。

(这super.onCreateDialog()也是不必要的,因为您没有对返回的 . 做任何事情Dialog。)

于 2013-10-03T09:42:39.653 回答
2

我认为你的问题在于

 protected void onPostExecute(String file_url) {
        pDialog.dismiss();
    }

如果您在活动完成后触摸对话框,则会引发预期。您必须小心,当您的活动完成时,异步任务继续并调用 postexecute。

于 2013-10-03T09:38:54.370 回答
1

将此代码放在执行后:

private ProgressDialog pDialog;

    if (pDialog.isShowing()){
                    pDialog.dismiss();

                }

它为我工作。

于 2015-03-09T08:09:48.403 回答