Android:使用 AsyncTask 进行多个操作

发布于 2024-11-26 04:18:11 字数 601 浏览 1 评论 0原文

我正在通过书学习 Android,只是想确认一些事情。

当根据本书使用 AsyncTask 时,它是这样的:

main class
{
 new AddStringTask().execute(); 
  } 

  class AddStringTask extends AsyncTask<Void, String, Void> { 
@Override 
protected Void doInBackground(Void... unused) { 
  // Do something
    SystemClock.sleep(333);
      return(something); 
    } 
 @Override 
    protected void onProgressUpdate(String... item) { 
        // update something

} 
      } 

它创建一个后台线程来执行一些操作。 因此,如果我想要更多线程,例如在不同时间(300、500、1000 毫秒)触发,那么我需要 制作更多的子类...真的吗?

或者是否有某种方法可以仅使用这个子类在不同时间触发多个线程?

谢谢!

I am learning Android via a book and would just like to confirm something.

When using AsyncTask according to the book it goes something like this:

main class
{
 new AddStringTask().execute(); 
  } 

  class AddStringTask extends AsyncTask<Void, String, Void> { 
@Override 
protected Void doInBackground(Void... unused) { 
  // Do something
    SystemClock.sleep(333);
      return(something); 
    } 
 @Override 
    protected void onProgressUpdate(String... item) { 
        // update something

} 
      } 

which creates one background thread to do some stuff.
So if I want more threads, for example firing at different times (300, 500, 1000 milliseconds) then I need
to make even more sub classes... true?

Or is there some way to do multiple threads firing at different times using just this one subclass?

Thanks!

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

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

发布评论

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

评论(2

请爱~陌生人 2024-12-03 04:18:11

那么我需要创建更多的子类......是吗?

不正确。

您可以通过创建一个新的 AddStringTask() 实例来再次执行相同的 AsyncTask 实例。这是可行的,因为它将是一个与其他实例不同的新实例,并且每个实例都有自己的线程。 它们并不相互依赖

然而,定时器机制是你必须自己实现的。

then I need to make even more sub classes... true?

Not true.

You can just execute the same AsyncTask again by creating a new AddStringTask() instance. This works since it'll be a new instance which differs from the other ones and each instance has its own thread. They are not interdependent.

However, the timer mechanism is something you have to implement yourself.

葵雨 2024-12-03 04:18:11

您还可以使用相同的 AsyncTask 并从同一线程发布不同的进度。让我们说:

    protected Void doInBackground(Void... unused) {
    ... 
        System.sleep(500);
        publishProgress(x);
        System.sleep(500);
        pulbishProgress(y);
     }

     protected void onProgressUpdate(String... progress) {
         myLabel.setText(progress[0]);
     }

You could also use the same AsyncTask and publish diffrent progresses from the same thread. Let say :

    protected Void doInBackground(Void... unused) {
    ... 
        System.sleep(500);
        publishProgress(x);
        System.sleep(500);
        pulbishProgress(y);
     }

and

     protected void onProgressUpdate(String... progress) {
         myLabel.setText(progress[0]);
     }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文