gpt4 book ai didi

android - 从异步线程访问UI线程

转载 作者:行者123 更新时间:2023-12-03 13:11:52 24 4
gpt4 key购买 nike

快速提问:我一直在使用产生工作线程来执行异步任务的框架,一个很好的例子是Retrofit。在成功/失败部分中,我可能会弹出一个对话框,该对话框需要位于UI线程上。我一直在访问底层
在Retrofit的成功/失败部分中,以这种方式使用Activity/UI线程:

Dialog dialog = new Dialog(LoginActivity.this, R.style.ThemeDialogCustom);

这在99.9%的时间内效果很好,但是偶尔会在创建对话框时收到以下错误消息:
android.view.WindowManager$BadTokenException
LoginActivity.java line 343 in LoginActivity$6.success()
Unable to add window -- token android.os.BinderProxy@41662138 is not valid;
is your activity running?

因此,我的方法是从工作线程访问Activity上下文/UI线程的最稳定方法还是我需要其他方法?

最佳答案

如果您使用线程而不使用Asynctasks,请始终像这样运行在 runOnUIThread 中更改UI的所有内容

activity.runOnUiThread(new Runnable() {
@Override
public void run() {
//change UI
}
});

更通用的方法是这样做,几乎是一样的
new Handler(Looper.getMainLooper()).post(new Runnable() {
@Override
public void run() {
//change UI
}
})

See here the minimal difference between runOnUIThread and MainLooper

如果要检查您是否在主/UI线程上
if(Thread.currentThread() == Looper.getMainLooper().getThread()) {
//you are on the main thread
}

关于android - 从异步线程访问UI线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29332836/

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