1

我有一个有按钮的活动。当用户单击该按钮时,它会调用一个构建 zip 文件的 Util 类。在构建 zip 之后,它会将其返回给活动并创建电子邮件意图。

我有下面的代码部分工作。它的进度条部分可以正常工作。但是电子邮件不止一次生成。我知道这样做是因为该代码是循环的,但我不确定如何修复。

我只想在处理 NEW ActivityDumpUtil 时使用进度条。当它调用的zip文件然后我想发起发送电子邮件的意图..

public class ActivityDump extends Activity {

private Button button;
ProgressDialog progressBar;
private int progressBarStatus = 0;
private Handler progressBarbHandler = new Handler();

private long fileSize = 0;


@Override
public void onCreate(Bundle savedInstanceState) {
    Util.onActivityCreateSetTheme(this);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_dump);
    addButtonListener();

}

public void addButtonListener() {
    button = (Button) findViewById(R.id.activity_dump);
    button.setOnClickListener(new View.OnClickListener() {


        @Override
        public void onClick(View v) {

            // create and display a new ProgressBarDialog
            progressBar = new ProgressDialog(v.getContext());
            progressBar.setCancelable(true);
            progressBar.setMessage("Gathering app info off your device");
            progressBar.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
            progressBar.setProgress(0);
            progressBar.setMax(100);
            progressBar.show();

            progressBarStatus = 0;

            fileSize = 0;

            new Thread(new Runnable() {

                public void run() {
                    while (progressBarStatus < 100) {


                        final File outfile = new File(Environment.getExternalStorageDirectory(), "BigDX");
                        new ActivityDumpUtil(ActivityDump.this, outfile, new ActivityDumpUtil.ActivityDumpCallback() {
                            @Override
                                public void onComplete (File outfile) {

                                    Intent intent = new Intent(android.content.Intent.ACTION_SEND);
                                    intent.setType("text/plain");
                                    Uri uri = Uri.fromFile(outfile);
                                    intent.putExtra(android.content.Intent.EXTRA_STREAM, uri);
                                    intent.putExtra(android.content.Intent.EXTRA_EMAIL, new String[] { "bignadad@gmail.com" });
                                    intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "Icon Support");
                                    intent.putExtra(android.content.Intent.EXTRA_TEXT, "I am using " + Build.DEVICE + " with Android version " + Build.VERSION.RELEASE + " on " + getResources().getString(R.string.app_name));
                                    startActivity(Intent.createChooser(intent, "Send eMail.."));
                                    finish();
                                }
                            })
                                .dumpActivityInformation();

                        progressBarStatus = downloadFile();

                        // sleep 1 second (simulating a time consuming task...)
                        try {
                            Thread.sleep(1000);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }

                        // Update the progress bar
                        progressBarbHandler.post(new Runnable() {
                            public void run() {
                                progressBar.setProgress(progressBarStatus);
                            }
                        });
                    }

                    // if the file is downloaded,
                    if (progressBarStatus >= 100) {

                        // sleep 2 seconds, so that you can see the 100%
                        try {
                            Thread.sleep(2000);
                        } catch (InterruptedException e) {
                            e.printStackTrace();
                        }

                        // and then close the progressbar dialog
                        progressBar.dismiss();
                    }
                }
            }).start();

        }

    });

}

public int downloadFile() {

    while (fileSize <= 1000000) {

        fileSize++;

        if (fileSize == 100000) {
            return 10;

        } else if (fileSize == 200000) {
            return 20;

        } else if (fileSize == 300000) {
            return 30;

        } else if (fileSize == 400000) {
            return 40;

        } else if (fileSize == 500000) {

            return 50;
        } else if (fileSize == 700000) {

            return 70;
        } else if (fileSize == 800000) {

            return 80;
        }
        //...

    }

    return 100;

}

}

4

1 回答 1

0

假设onComplete在 UI 线程中调用了回调(如果不确定,可以使用 Handler 强制执行此操作),我建议您启动一个 AsyncTask,它只会更新 ProgressBar 的进度,而不是启动您的dumpActivityInformation()(我假设它是在后台线程,否则更容易)。接下来,当你dumpActivityInformation()结束时,你必须升起一个获取完成的标志并检查 AsyncTask 是否结束,那么你将有 2 个选项

  1. AsyncTask 结束 - 只是隐藏进度条
  2. AsyncTask 没有结束——什么都不做

然后在 AsyncTaskonPostExecute你必须升起一个标志,它已经结束并检查 2 个案例

  1. dumpActivityInformation()已完成 - 只需隐藏进度条
  2. dumpActivityInformation()- 没做什么

如果是阻塞方法,这会更容易dumpActivityInformation(),那么你不需要这个标志,只需在progressBar之后的AsyncTask中执行它。

于 2013-07-28T18:23:31.640 回答