How to update widgets from a service?(如何从服务更新小部件?)
问题描述
我有一个后台服务,可以配置为每 x 分钟执行一次操作.我想实现一个小部件,每次我的服务执行该操作时都会更新.但是,我无法以任何方式调用 AppWidgetProvider 的 onUpdate 方法,除非将小部件添加到主屏幕.
I have a background service that can be configured to perform some action every x minutes. I want to implement a widget that gets updated every time my service performs that action. However, I can't get the onUpdate method of my AppWidgetProvider called in any way, except when adding a widget to the homescreen.
我尝试发送 APPWIDGET_UPDATE 意图,但 onUpdate 没有被调用,尽管 AppWidgetProvider 确实收到了意图,因为调用了 onReceive 方法.有什么方法可以从服务触发小部件更新?
I tried sending APPWIDGET_UPDATE intents but onUpdate did not get called although the AppWidgetProvider did receive the intent since the onReceive method was called. Is there any way I can trigger widget updates from a service?
推荐答案
只需让自己成为一个 RemoteViews 并直接在 Service 中更新小部件.您将通过以下方式获得 AppWidgetManager:
Just make yourself a RemoteViews and update the widget(s) directly in the Service. You'll get your AppWidgetManager via:
AppWidgetManager mgr=AppWidgetManager.getInstance(this);
其他一切正常.
注意:-如果您真的想强制现有的 AppWidgetProvider 完成工作,请向您的组件发送带有自定义操作的广播,然后调用 onUpdate() 自己从 onReceive() 获取时.
Note:- If you really want to force the existing AppWidgetProvider to do the work, send a broadcast with a custom action to your component, and call onUpdate() yourself from onReceive() when you get it.
这篇关于如何从服务更新小部件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从服务更新小部件?
基础教程推荐
- navigator.geolocation.getCurrentPosition 在 Android 浏览器上 2022-01-01
- NSString intValue 不能用于检索电话号码 2022-01-01
- libGDX 从精灵或纹理中获取像素颜色 2022-01-01
- Android:getLastKnownLocation(LocationManager.NETWORK_PROVIDER 2022-01-01
- iOS4 创建后台定时器 2022-01-01
- Cocos2d iPhone 非矩形精灵触摸检测 2022-01-01
- iPhone - 获取给定地点/时区的当前日期和时间并将其与同一地点的另一个日期/时间进行比较的正确方法 2022-01-01
- 如何从 logcat 中删除旧数据? 2022-01-01
- 通过重定向链接在 Google Play 中打开应用 2022-01-01
- AdMob 广告未在模拟器中显示 2022-01-01
