Android:小部件 - 在远程视图上使用 setOnclickPendingIntent 时出现空指针异常?
Posted
技术标签:
【中文标题】Android:小部件 - 在远程视图上使用 setOnclickPendingIntent 时出现空指针异常?【英文标题】:Android : Widget - Null pointer Exception when using setOnclickPendingIntent on the remoteviews? 【发布时间】:2011-08-28 22:42:11 【问题描述】:我有一个小部件(appwidgetprovider + 服务) 该服务更新 UI 基本上是这样的:
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
//doing some stuff like which works without any errors :
views.setTextViewText(R.id.Time, time);
// Here I'm calling a static method that set pendingIntent on different ID :
// With it : Null Pointer Exception, without not.
views = HomeWidgetUtils.setPendingIntentForAllWidgetSubView(context, views);
//update AppWidgetProvider :
AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
ComponentName thisAppWidget = new ComponentName(context, WDWidgetProvider.class);
manager.updateAppWidget(widget, views);
所以一切正常,无需使用我将 PendingIntent 设置为 id 的静态方法, setPendingIntentForAllWidgetSubView 这是代码:
public static RemoteViews setPendingIntentForAllWidgetSubView(Context context,RemoteViews rv)
rv.setOnClickPendingIntent(R.id.Widget, HomeWidgetUtils.getPendingIntentonActivity(context, WeatherForecast.class));
rv.setOnClickPendingIntent(R.id.globallayout, HomeWidgetUtils.getPendingIntentonActivity(context, TabActivity01.class));
return rv;
public static PendingIntent getPendingIntentonActivity(Context context,Class C)
Intent intentleft = new Intent(context, C);
intentleft.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
return PendingIntent.getActivity(context, 1, intentleft,PendingIntent.FLAG_UPDATE_CURRENT);
如果我使用它,这是我得到的 NPE:(第 283 行与 manager.updateAppWidget(widget, views); 相关)
java.lang.NullPointerException
at android.widget.RemoteViews$SetOnClickPendingIntent.writeToParcel(RemoteViews.java:131)
at android.widget.RemoteViews.writeToParcel(RemoteViews.java:1003)
at com.android.internal.appwidget.IAppWidgetService$Stub$Proxy.updateAppWidgetIds(IAppWidgetService.java:374)
at android.appwidget.AppWidgetManager.updateAppWidget(AppWidgetManager.java:246)
at fr.cdcorp.homewidget.clock.ClockWidgetService.update(ClockWidgetService.java:283)
at fr.cdcorp.homewidget.clock.ClockWidgetService$1.onReceive(ClockWidgetService.java:312)
at android.app.ActivityThread$PackageInfo$ReceiverDispatcher$Args.run(ActivityThread.java:892)
at android.os.Handler.handleCallback(Handler.java:587)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
at dalvik.system.NativeStart.main(Native Method)
此外,我确定 manager.updateAppWidget(widget, views) 指令中的小部件和视图不为空。 那么设置pendingIntent时我做错了什么????
任何帮助将不胜感激!!! 光盘。
工作解决方案(根据帖子作者):
public static PendingIntent getPendingIntentonActivity(Context context,Class C)
PendingIntent mPendingIntent = null;
Intent mIntent = new Intent(Intent.ACTION_MAIN).addCategory(
Intent.CATEGORY_LAUNCHER);
ComponentName cn = new ComponentName(context, C);
mIntent.setComponent(cn);
return PendingIntent.getActivity(context, 0, mIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
【问题讨论】:
检查您是否在 AndroidManifest.xml 中声明了 WeatherForecast.class 和 TabActivity01.class 【参考方案1】:尝试使用FLAG_ACTIVITY_NEW_TASK
:
public static PendingIntent getPendingIntentonActivity(Context context,Class C)
Intent intentleft = new Intent(context, C);
intentleft.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
intentleft.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
return PendingIntent.getActivity(context, 1, intentleft,PendingIntent.FLAG_UPDATE_CURRENT);
让我知道这是否有效。
【讨论】:
谢谢,但没有任何改变。又是NPE……真的不知道为什么会失败。 这是哪个安卓版本? 2.2 apilevel 8 ,但似乎很多用户都通过我的最新更新获得了这个。真正奇怪的是,它在我的 HTC Desire 2.2 上就像一个魅力......所以我可以重现 emulator 2.2 api level 8.. 和其他 api 级别的问题。 嗯....如果我像这样在 updateappwidget 调用之前直接构建和设置 pendingIntent : 奇数。发生错误是因为HomeWidgetUtils.getPendingIntentonActivity
返回 null,而不是有效的 PendingIntent
。所以我会检查WeatherForecast.class
和TabActivity01.class
在你的AndroidManifest.xml 文件中有<activity>
条目。以上是关于Android:小部件 - 在远程视图上使用 setOnclickPendingIntent 时出现空指针异常?的主要内容,如果未能解决你的问题,请参考以下文章
如何将图像从 url 加载到小部件的 android 远程视图中