从应用程序的主活动中调用小部件的 onUpdate 方法
我正在开发一个包含小部件的 Android 应用程序。应用程序的主界面是一个简单的活动,但用户可以在活动中执行的一些操作使得有必要更新小部件 - 即运行其 onUpdate 方法。
如何从活动中触发此方法?查看其他 问题,我已经能够编写更改其布局的代码,但它似乎没有在更新时运行(因为我只剩下空布局,并且没有在 onUpdate 期间添加的任何数据)。
非常感谢任何想法或代码示例!
I'm working on an Android application which includes a widget. The main interface of the app is a simple activity, but some of the things users can do in the activity make it necessary to update the widget - i.e. run its onUpdate method.
How can I trigger this method from the activity? Looking at other questions, I've been able to write code which changes its layout, but it doesn't seem to run onUpdate (since I'm just left with the empty layout and none of the data which is added during onUpdate).
Any ideas or code samples very much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对 Android 还很陌生,但我通过三个步骤完成了这一点:
首先,我将 AppWidgetProvider.onUpdate 的内容放入一个方法中 (
myUpdate(Context)
)。其次,我重写了 AppWidgetProvider.onReceive() ,看起来像这样:
第三,从我的其他活动中,我只是发送一个通用广播,其中包含针对意图设置的操作。
这确实有一个缺点,那就是必须自己从上下文和应用程序小部件 ID 中找到 AppWidgetManager,而不是 onUpdate 为您提供的漂亮界面。所以我怀疑这是正确的方法。祝你好运。
myUpdate(Context) 开始是这样的:
I am still pretty new to Android, but I accomplished this with three steps:
First, I put the contents of my AppWidgetProvider.onUpdate in a method (
myUpdate(Context)
).Second, I overrode AppWidgetProvider.onReceive() to look something like this:
Third, from my other activity, I just send a generic broadcast with the action set on the intent.
This does have the down side of having to find the AppWidgetManager yourself from the context and the app widget ids, instead of the nice interface onUpdate gives you. So I am skeptical that this is the right approach. Best of luck.
myUpdate(Context) starts like this: