How to post toast from non ui Widget thread(如何从非 ui Widget 线程发布 toast)
问题描述
在从小部件中的非 UI 线程调用函数后,我尝试发布祝酒词.我已经阅读了多种执行此操作的方法(发布/新处理程序/广播),但大多数方法似乎针对的是活动而不是小部件类,我无法工作.
I am trying to post a toast after calling a function from a non UI thread in a widget. I've read multiple ways of doing this (post/new handler/broadcast) but most methods seem to be aimed at activities rather than widget classes and I can't get any to work.
我在下面有一些基本代码......谁能告诉我做我需要做的最好的方法,也许可以提供一个例子......谢谢(显然我已经删除了所有不必要的部分......
I have some basic code below... Can anyone tell me the best way to do what I need to do and maybe provide an example... Thank you (obviously I've taken out all the unnecessary bits...
我知道你不能在小部件中使用 runOnUiThread,但是基本上做我想做的最好的方法是什么???
I know you can't use runOnUiThread in a widget but what is the best way of basically doing what I want???
提前致谢
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 线程中运行某些东西时,我会使用这种方法:
You can create your own version of runOnUiThread(). This is what I use when I need to run something in the UI thread from outside an Activity:
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)
.
Then, you can simply call ThreadPool.runOnUiThread(runnable)
.
您可以在此系列文章中找到有关其工作原理的更多信息:Android:Looper、Handler、HandlerThread.第一部分
You can find more information on how this works in this post series: Android: Looper, Handler, HandlerThread. Part I
这篇关于如何从非 ui Widget 线程发布 toast的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从非 ui Widget 线程发布 toast
基础教程推荐
- 在 Libgdx 中处理屏幕的正确方法 2022-01-01
- 如何使用 Java 创建 X509 证书? 2022-01-01
- 降序排序:Java Map 2022-01-01
- Java Keytool 导入证书后出错,"keytool error: java.io.FileNotFoundException &拒绝访问" 2022-01-01
- “未找到匹配项"使用 matcher 的 group 方法时 2022-01-01
- Java:带有char数组的println给出乱码 2022-01-01
- 设置 bean 时出现 Nullpointerexception 2022-01-01
- 减少 JVM 暂停时间 >1 秒使用 UseConcMarkSweepGC 2022-01-01
- 无法使用修饰符“public final"访问 java.util.Ha 2022-01-01
- FirebaseListAdapter 不推送聊天应用程序的单个项目 - Firebase-Ui 3.1 2022-01-01