Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将自定义事件处理程序添加到 AppWidget 组件,即与 Intent 无关的事件处理程序?我只想要一个监听器功能,就像标准活动中的组件一样。谢谢。
有没有办法将自定义事件处理程序添加到 AppWidget 组件,即与 Intent 无关的事件处理程序?
仅当您是实现托管应用小部件的主屏幕的人时。
我只想要一个监听器功能,就像标准活动中的组件一样。
这只能通过托管应用小部件的活动(也称为主屏幕)来实现。
我实际上找到了解决这个问题的方法。我可以使用 PendingIntent.getBroadcast 然后在接收器的 onReceive 函数中,我可以编写任何我想要的代码。