gpt4 book ai didi

java - 如何从非 ui Widget 线程发布 toast

转载 作者:行者123 更新时间:2023-12-02 03:18:48 25 4
gpt4 key购买 nike

我试图在小部件中的非 UI 线程调用函数后发布 toast 。我已经阅读了多种执行此操作的方法(发布/新处理程序/广播),但大多数方法似乎都是针对 Activity 而不是小部件类,并且我无法让任何方法工作。

我下面有一些基本代码...任何人都可以告诉我做我需要做的事情的最佳方法,也许提供一个例子...谢谢(显然我已经删除了所有不必要的部分...

我知道你不能在小部件中使用 runOnUiThread 但基本上做我想做的事情的最佳方法是什么???

提前致谢

public class MyWidget extends AppWidgetProvider {

@Override
public void onReceive(final Context context, Intent intent) {
super.onReceive(context, intent);
new Thread(new Runnable() {
public void run() {
DoStuff();
}
}).start();
}

public void DoStuff () {

//do a load of stuff on the non UI thread which might take some time and return a string

String mymessage = "amessage"

runOnUiThread(new Runnable() {
@Override
public void run() {
Toast.makeText(context, mymessage, Toast.LENGTH_SHORT).show();
}
});


}

}

最佳答案

您可以创建自己的 runOnUiThread() 版本。当我需要从 Activity 外部在 UI 线程中运行某些内容时,我会使用以下方法:

public final class ThreadPool {
private static Handler sUiThreadHandler;

private ThreadPool() {
}

/**
* Run the {@code Runnable} on the UI main thread.
*
* @param runnable the runnable
*/
public static void runOnUiThread(Runnable runnable) {
if (sUiThreadHandler == null) {
sUiThreadHandler = new Handler(Looper.getMainLooper());
}
sUiThreadHandler.post(runnable);
}

// Other, unrelated methods...
}

然后,您只需调用ThreadPool.runOnUiThread(runnable)即可。

您可以在本系列文章中找到有关其工作原理的更多信息:Android: Looper, Handler, HandlerThread. Part I

关于java - 如何从非 ui Widget 线程发布 toast,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39917308/

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