gpt4 book ai didi

Android - 线程中的 Looper.prepare() 与 Activity.runOnUIThread()

转载 作者:行者123 更新时间:2023-11-30 02:01:26 26 4
gpt4 key购买 nike

我的问题很简单,但我找不到满意的答案。问题是:如果我在 Runnable 开始时调用 Looper.prepare(),我的线程是否在 UI 线程上运行?

我知道 Looper 用于 MessageQueue 并在线程之间交换数据,但它是否使代码在 UI 线程上运行?

下面的代码会解释:

@Override
public void onReceive(final Context context, Intent intent) {
if(intent.getAction().equals(ConnectivityManager.CONNECTIVITY_ACTION)) {

Runnable runnable = new Runnable() {
@Override
public void run() {
Looper.prepare();
// ... some code ... //
Looper.loop();
}
};

Thread thread = new Thread(runnable);
thread.start();
}
}

最佳答案

不,它不会让您的线程在 UI 线程上运行。有关详细信息,请参阅:Communicating with the UI Thread

关于Android - 线程中的 Looper.prepare() 与 Activity.runOnUIThread(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31401791/

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