强制 Android 小部件更新
Posted
技术标签:
【中文标题】强制 Android 小部件更新【英文标题】:Force Android widget to update 【发布时间】:2011-02-14 11:18:54 【问题描述】:我在 onreceive 方法中响应我的 appwidget 上的按钮按下。当我按下按钮时,我想强制小部件调用 onupdate 方法。我该如何做到这一点?
提前致谢!
【问题讨论】:
我认为是这个命令:appWidgetManager.updateAppWidget(appWidgetId, views);无论如何,你如何让它响应点击它的人?我在这里问了一个问题:***.com/questions/2748590/… 见***.com/questions/2748590/… 【参考方案1】:小部件实际上无法响应点击,因为它不是一个单独的进程运行。但它可以启动服务来处理您的命令:
public class TestWidget extends AppWidgetProvider
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds)
final int N = appWidgetIds.length;
// Perform this loop procedure for each App Widget that belongs to this provider
for (int i=0; i<N; i++)
int appWidgetId = appWidgetIds[i];
// Create an Intent to launch UpdateService
Intent intent = new Intent(context, UpdateService.class);
PendingIntent pendingIntent = PendingIntent.getService(context, 0, intent, 0);
// Get the layout for the App Widget and attach an on-click listener to the button
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.appwidget_provider_layout);
views.setOnClickPendingIntent(R.id.button, pendingIntent);
// Tell the AppWidgetManager to perform an update on the current App Widget
appWidgetManager.updateAppWidget(appWidgetId, views);
public static class UpdateService extends Service
@Override
public int onStartCommand(Intent intent, int flags, int startId)
//process your click here
return START_NOT_STICKY;
您还应该在清单文件中注册新服务:
<service android:name="com.xxx.yyy.TestWidget$UpdateService">
您可以在 SDK 的维基词典示例中找到另一个 UpdateService 实现示例
这是另一个好方法Clickable widgets in android
【讨论】:
“另一种好方法”链接有点与您最初的陈述相矛盾。通过使用 onReceive 处理程序,小部件可以响应点击而无需涉及服务,该处理程序具有在您单击小部件项目时发送的意图。在我看来,不涉及服务是更好的解决方案。 onStart in now DEPRECATED【参考方案2】:这有点粗糙,但对我来说效果很好,因为我没有找到直接实现的强制更新方法。
public class Foo extends AppWidgetManager
public static Foo Widget = null;
public static Context context;
public static AppWidgetManager AWM;
public static int IDs[];
public void onUpdate(Context context, AppWidgetManager AWM, int IDs[])
if (null == context) context = Foo.context;
if (null == AWM) AWM = Foo.AWM;
if (null == IDs) IDs = Foo.IDs;
Foo.Widget = this;
Foo.context = context;
Foo.AWM = AWM;
Foo.IDs = IDs;
.......
现在,我想强制更新小部件的任何地方,都非常简单:
if (null != Foo.Widget) Foo.Widget.onUpdate(null, null, null);
【讨论】:
如果用户有两个你的小部件实例,只有一个会被更新。 @Kernald 那么您肯定只更新了IDs[]
中的一个ID。遍历所有这些。以上是关于强制 Android 小部件更新的主要内容,如果未能解决你的问题,请参考以下文章