0

我是 android 新手,我想在 android 中从一个活动移动到另一个活动时显示进度。这里是代码。异常是“活动 com.example.mytest.ReadContactsActivity 已泄漏窗口 com.android.internal.policy.impl。 PhoneWindow$DecorView{40ce4900 VE.... R....I. 0,0-295,62} 最初添加在这里”

class MyTask extends AsyncTask<Void, Integer, Void> {

Dialog dialog;
ProgressBar progressBar;
TextView tvLoading,tvPer;


@Override
protected void onPreExecute() {
    super.onPreExecute();
    dialog = new Dialog(ReadContactsActivity.this);
    dialog.setCancelable(false);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setContentView(R.layout.progressdialog);

    progressBar = (ProgressBar) dialog.findViewById(R.id.progressBar1);
    tvLoading = (TextView) dialog.findViewById(R.id.tv1);
    dialog.show();
}

@Override
protected Void doInBackground(Void... params) {

 textViewDisplay = (TextView) findViewById(R.id.textViewDisplay);
 ContentResolver cr = getContentResolver();
 Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
        null, null, null, null);

 if (cur.getCount() > 0) {
    while (cur.moveToNext()) {
        String id = cur.getString(cur.getColumnIndex(ContactsContract.Contacts._ID));
        String name = cur.getString(cur.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME));
        if (Integer.parseInt(cur.getString(cur.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
            System.out.println("name : " + name + ", ID : " + id);
            textViewDisplay.append("Name: ");
            textViewDisplay.append(name);

            // get the phone number
            Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,
                                   ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",
                                   new String[]{id}, null);
            while (pCur.moveToNext()) {
                  String phone = pCur.getString(
                         pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER));
                  textViewDisplay.append(",Number: "+ phone);
                  textViewDisplay.append("\n");      
            }
            pCur.close();
            }
        }
    }
return null;
}

@Override
protected void onProgressUpdate(Integer... values) {
    super.onProgressUpdate(values);
    progressBar.setProgress(values[0]);
    tvLoading.setText("Loading...  " + values[0] + " %");
    tvPer.setText(values[0]+" %");
}

@SuppressWarnings("deprecation")
@Override
protected void onPostExecute(Void result) {
    super.onPostExecute(result);

    dialog.dismiss();

    AlertDialog alert = new AlertDialog.Builder(ReadContactsActivity.this)
            .create();

    alert.setTitle("Completed!!!");
    alert.setMessage("Your Task is Completed SuccessFully!!!");
    alert.setButton("Dismiss", new DialogInterface.OnClickListener() {

        @Override
        public void onClick(DialogInterface dialog, int which) {
            dialog.dismiss();

        }
    });
    alert.show();
}
}
4

3 回答 3

3

doInBackground 不在 UI 线程中运行,但您正在尝试从 doInBackground 获取视图

textViewDisplay = (TextView) findViewById(R.id.textViewDisplay); //wrong

删除它并将其放在 PreExecute 方法上

而且你真的可以在非 UI 线程上做 UI 操作,所以不要对 doinBackGround 中的 textViewDisplay 做任何操作。

最后将您的数据附加到字符串并在 doInBackground 中返回,您将在 onPostExecute 中获得该值作为参数使用它来设置 Textvalue 类似这样

public String doInBackGround()
{
--
return result;
}
public void onPostExecute(String result)
{
textViewDisplay.setText(result);
}
于 2013-03-07T18:03:03.770 回答
1

我在您的代码上看不到任何问题,但 progressdialog 可能为 null 等。

我已经编写了显示和隐藏功能并使用它们。我在执行 asynctask(在活动中 - 实际上它们在我的基本活动中)和 onPostExecute 中的 hideLoading() 之前调用 showLoading() 函数。

请试一试。希望能帮助到你。

问候。

protected void showLoading() {
    if (dialog == null) {
        dialog = ProgressDialog.show(this, "", this.getResources()
                .getString(R.string.loading));
        dialog.setMessage(this.getResources().getString(R.string.loading));
        dialog.setCancelable(true);
        dialog.setCanceledOnTouchOutside(false);
        dialog.setOnCancelListener(new OnCancelListener() {

            public void onCancel(DialogInterface arg0) {
                 if(dialog.isShowing())
                     dialog.dismiss();
                 finish();
            }
        });
        dialog.show();
    }
}

protected void hideLoading() {
    if (dialog != null && dialog.isShowing()) {
        dialog.dismiss();
        dialog = null;
    }
} 
于 2013-03-07T12:52:58.567 回答
1

这里有几件事是错误的。我不能确定导致泄漏的原因,但在你追究之前,请解决以下问题:

  • 你真的不应该textViewDisplay在后台线程中搞乱。如果您需要/想要在 UI 工作时更新它,请使用publishProgress()它。

  • 我现在根本看不到你打电话的任何地方publishProgress()。这意味着您的onProgressUpdate()方法可能永远不会被调用。

于 2013-03-07T14:08:59.330 回答