Android:每个线程只能创建一个Looper

发布于 2024-09-27 02:27:37 字数 214 浏览 7 评论 0原文

我在使用 Android 循环程序时遇到问题。我有一个扩展了 AsynTask 的类。在 doInBackground() 方法内部,我有 Looper.prepare() 和下面的一些代码。

第一次运行良好,但之后就出现异常 “每个线程只能创建一个 Looper”。

似乎有一些使用 Looper.quit() 的解决方案,但我无法实现它。

任何帮助将不胜感激。

I am having a problem with Android looper. I have a class that has extended AsynTask. Inside doInBackground() method i have Looper.prepare() and some code below.

It runs well and good for the first time but after that it gives an exception
" Only one Looper may be created per thread" .

There seems some solution to use Looper.quit() but i am unable to implement it.

Any help will be appreciated.

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

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

发布评论

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

评论(4

凝望流年 2024-10-04 02:27:37
class LooperThread extends Thread {
      public Handler mHandler;

      public void run() {
          Looper.prepare();

          mHandler = new Handler() {
              public void handleMessage(Message msg) {
                  // process incoming messages here
              }
          };

          Looper.loop();
      }
  }
class LooperThread extends Thread {
      public Handler mHandler;

      public void run() {
          Looper.prepare();

          mHandler = new Handler() {
              public void handleMessage(Message msg) {
                  // process incoming messages here
              }
          };

          Looper.loop();
      }
  }
丢了幸福的猪 2024-10-04 02:27:37

尝试...

Looper.getMainLooper().quit();

Try...

Looper.getMainLooper().quit();
夏至、离别 2024-10-04 02:27:37
getActivity().runOnUiThread (new Thread(new Runnable() { 
    public void run() {
        Looper.myLooper();
        getActivity().invalidateOptionsMenu();
    }
}));
getActivity().runOnUiThread (new Thread(new Runnable() { 
    public void run() {
        Looper.myLooper();
        getActivity().invalidateOptionsMenu();
    }
}));
山有枢 2024-10-04 02:27:37

只需添加以下检查即可。

 if (Looper.myLooper() == null)
     Looper.prepare();

Just add the following check.

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