Android错误:AsyncTask中泄露的窗口

时间:2013-10-03 09:34:05

标签: android android-asynctask memory-leaks

我有时只会出现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();
        }
    }

有什么“坏”吗?谢谢你的帮助

3 个答案:

答案 0 :(得分:5)

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

onPreExecute()中,您可以创建一个新对话框,但可能是pDialog已经拥有对活动对话框的引用。一些方法:

  • 在创建新pDialog == null之前检查null。解雇后将pDialog分配给pDialog != null

  • 如果dismiss()super.onCreateDialog()首先创建新对话框。

(同样Dialog是不必要的,因为您没有对返回的{{1}}做任何事情。)

答案 1 :(得分:2)

我认为你的问题在

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

如果您在活动结束后触摸对话框,则会提高预期。你必须要小心,当你的活动完成后,asynctask继续并调用postexecute。

答案 2 :(得分:1)

将此代码放入后执行:

private ProgressDialog pDialog;

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

                }

它为我工作。