无法从小部件发送待处理的意图,SendIntentException

Cannot send pending intent from widget, SendIntentException(无法从小部件发送待处理的意图,SendIntentException)
本文介绍了无法从小部件发送待处理的意图,SendIntentException的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想使用以下代码从我的小部件发送广播:

I want to send a broadcast from my widget with this code:

for (int i = 0; i < N; i++) {
   int appWidgetId = appWidgetIds[i];
   RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
   Intent x = new Intent();
   if (isActive == true) {
      views.setImageViewResource(R.id.w_image, R.drawable.w_bild);
      x.setAction("de.bulling.smstalk.DISABLE");
   } else {
      views.setImageViewResource(R.id.w_image, R.drawable.w_bild_off);
      x.setAction("de.bulling.smstalk.ENABLE");
   }
   PendingIntent z = PendingIntent.getBroadcast(context, 0, x, PendingIntent.FLAG_ONE_SHOT);
   views.setOnClickPendingIntent(R.id.w_image, z);
   appWidgetManager.updateAppWidget(appWidgetId, views);
}

但是,我收到此错误:

E/RemoteViews(18176): Cannot send pending intent: 
E/RemoteViews(18176): android.content.IntentSender$SendIntentException
E/RemoteViews(18176):   at android.app.ContextImpl.startIntentSender(ContextImpl.java:640)
E/RemoteViews(18176):   at android.widget.RemoteViews$SetOnClickPendingIntent$1.onClick(RemoteViews.java:157)
E/RemoteViews(18176):   at android.view.View.performClick(View.java:2408)
E/RemoteViews(18176):   at android.view.View$PerformClick.run(View.java:8816)
E/RemoteViews(18176):   at android.os.Handler.handleCallback(Handler.java:587)
E/RemoteViews(18176):   at android.os.Handler.dispatchMessage(Handler.java:92)
E/RemoteViews(18176):   at android.os.Looper.loop(Looper.java:123)
E/RemoteViews(18176):   at android.app.ActivityThread.main(ActivityThread.java:4627)
E/RemoteViews(18176):   at java.lang.reflect.Method.invokeNative(Native Method)
E/RemoteViews(18176):   at java.lang.reflect.Method.invoke(Method.java:521)
E/RemoteViews(18176):   at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
E/RemoteViews(18176):   at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
E/RemoteViews(18176):   at dalvik.system.NativeStart.main(Native Method

这是什么原因?你有什么主意吗?谢谢,马克

What's the reason for this? Do you have any idea? Thanks, Marc

/edit:我找到了答案:必须是 Intent x = new Intent(context, WidgetClass.class);

/edit: I found the answer: It has to be Intent x = new Intent(context, WidgetClass.class);

推荐答案

我找到了答案:一定是 Intent x = new Intent(context, WidgetClass.class);

I found the answer: It has to be Intent x = new Intent(context, WidgetClass.class);

这篇关于无法从小部件发送待处理的意图,SendIntentException的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to target newer versions in .gitlab-ci.yml using auto devops (java 11 instead of 8 and Android 31 instead of 29)(如何在.gitlab-ci.yml中使用自动开发工具(Java 11而不是8,Android 31而不是29)瞄准较新的版本)
Android + coreLibraryDesugaring: which Java 11 APIs can I expect to work?(Android+core LibraryDesugering:我可以期待哪些Java 11API能够工作?)
How to render something in an if statement React Native(如何在If语句中呈现某些内容Reaction Native)
How can I sync two flatList scroll position in react native(如何在本机Reaction中同步两个平面列表滚动位置)
iOS: Send multiple actions to a bar button(IOS:向一个栏按钮发送多个动作)
Using Firebase Firestore in offline only mode(在仅脱机模式下使用Firebase FiRestore)