【发布时间】:2012-02-10 16:50:54
【问题描述】:
我有这个简单的小部件,当我点击它时,它应该会打开我的活动,它可以工作,但重启后它就不能工作了。我必须删除然后再次将小部件添加到我的主屏幕,因为当我单击小部件时,小部件没有响应并且没有打开我的活动。那么问题出在哪里?
代码:
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final int N = appWidgetIds.length;
for(int i=0; i<N; i++){
int appWidgetId = appWidgetIds[i];
context.startService(new Intent(context, WidgetService.class));
Intent intent = new Intent(context, WidgetDialog.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget);
views.setOnClickPendingIntent(R.id.layout_widget, pendingIntent);
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}
@Override
public void onEnabled(Context context){
context.startService(new Intent(context, WidgetService.class));
}
@Override
public void onDisabled(Context context){
context.stopService(new Intent(context, WidgetService.class));
}
【问题讨论】:
-
找到解决方案了吗?
-
是的,我做到了。无论如何,谢谢你的提问。
-
你应该发布你的解决方案,而不是说“谢谢你的提问”。
-
@Adam 你能解释一下你是如何解决这个问题的吗?就像奇怪的答案所暗示的一样?
-
我在一些旧的 Android 版本上遇到了这个问题,我记得有时在重启后不会调用 OnUpdate 和 OnEnabled 方法,但我认为它现在应该可以正常工作了。