如何停止无限循环中的AsyncTask?

发布于 2025-01-02 09:25:54 字数 1012 浏览 2 评论 0原文

我有 AsyncTask 并且我在后台的进度处于无限循环中。但是当用户停止我的应用程序或从我的应用程序返回(我的应用程序转到前台)时,我需要停止 AsyncTask。我该怎么做呢?

解决方案:

私有布尔值完成= false;

private class CurTask extends AsyncTask<String, Void, Object> {
        protected Void doInBackground(String... args) {
            while(!done){
                DefaultCurProgress();           
                publishProgress();
            }
        }

        protected void onProgressUpdate(Void...unused) {
            textCur = (TextView)findViewById(R.id.text_cur);

            SharedPreferences myPrefs = MyActivity.this.getSharedPreferences("myPrefs", MODE_PRIVATE);
            String prefNameDefaultCur = myPrefs.getString(DefaultCur, "");

            textCur.setText(prefNameDefaultCur); 
        }
}

@Override
    public void onPause(){
        super.onPause();
        done=true;
    }

    @Override
    public void onResume(){
        super.onResume();
        done=false;
    }

I have AsyncTask and my progress in background is in infinite loop. But I need to stop AsyncTask when user stop my app or go back from my app (my app go to foreground). How can I do it?

Solution:

private boolean done = false;

private class CurTask extends AsyncTask<String, Void, Object> {
        protected Void doInBackground(String... args) {
            while(!done){
                DefaultCurProgress();           
                publishProgress();
            }
        }

        protected void onProgressUpdate(Void...unused) {
            textCur = (TextView)findViewById(R.id.text_cur);

            SharedPreferences myPrefs = MyActivity.this.getSharedPreferences("myPrefs", MODE_PRIVATE);
            String prefNameDefaultCur = myPrefs.getString(DefaultCur, "");

            textCur.setText(prefNameDefaultCur); 
        }
}

@Override
    public void onPause(){
        super.onPause();
        done=true;
    }

    @Override
    public void onResume(){
        super.onResume();
        done=false;
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

和影子一齐双人舞 2025-01-09 09:25:54

在 AsyncTask 中声明一个方法来告诉它结束。像这样:

private class CurTask extends AsyncTask<String, Void, Object> {
    private boolean done = false;

    public void quit() {
        done = true;
    }

    protected Void doInBackground(String... args) {
        while(!done){
            DefaultCurProgress();           
            publishProgress();
        }
    }

Declare a method within your AsyncTask that tells it to end. Something like so:

private class CurTask extends AsyncTask<String, Void, Object> {
    private boolean done = false;

    public void quit() {
        done = true;
    }

    protected Void doInBackground(String... args) {
        while(!done){
            DefaultCurProgress();           
            publishProgress();
        }
    }
难忘№最初的完美 2025-01-09 09:25:54

添加一个布尔成员变量并在 while 条件中使用它而不是 true

然后,当您需要取消它时,您可以调用实例方法将此变量设置为 false,doInBackground 方法将返回并且任务将完成。

Add a boolean member variable and use that in your while condition instead of true.

Then when you need to cancel it you can just call an instance method to set this variable to false, the doInBackground method will return and the task will finish.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文