gpt4 book ai didi

android - 获取 java.lang.IllegalStateException : The current thread must have a looper

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:14:01 40 4
gpt4 key购买 nike

我收到此错误,我的应用程序崩溃了:

java.lang.IllegalStateException: The current thread must have a looper!

我对如何在 Google 上使用 looper 了解不多,我正在使用线程(主要用于休眠功能)、处理程序(用于在异步任务运行时下载图像)和异步任务(用于从中获取 JSON 数据)网址)。我不知道如何解决这个问题,所以任何建议都会很有帮助。

这是点击按钮时执行的线程代码:

View view = flingContainer.getSelectedView();
view.findViewById(R.id.item_swipe_right_indicator).setAlpha((float) 1.0);

Thread timer = new Thread() {
public void run() {
try {
sleep(320);
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
flingContainer.getTopCardListener().selectLeft();
}
}
};
timer.start();

我正在使用 this libray 和 log-cat 是: image

其中:at com.enormous.quotesgram.MainActivity$3.run(MainActivity.java:479) 最后在 log-cat 中对应于行:flingContainer.getTopCardListener()。 selectLeft(); 在上面的代码中。

最佳答案

尝试以下操作(不幸的是我无法测试代码):

Thread timer = new Thread() {
public void run() {
try {
sleep(320);
} catch (InterruptedException e) {
e.printStackTrace();
} finally {
runOnUiThread(new Runnable() {
@Override
public void run() {
flingContainer.getTopCardListener().selectLeft();
}
});
}
}
};

背后的想法是,Timer 线程不是Looper 线程(导致异常提示“当前线程必须有一个循环程序")。然而,UI 线程是一个 Looper 线程(参见示例 this site)。

由于 flingContainer.getTopCardListener().selectLeft() 可能设计为在 UI 线程上运行,如果它没有在流水线线程的一侧调用,它就会失败。

关于android - 获取 java.lang.IllegalStateException : The current thread must have a looper,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29680789/

40 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com