将整数从 Android 主屏幕小部件传递到 Android 主屏幕打开的 Activity
我们如何将 Android 主屏幕小部件信息(也许是 putExtra )传递给 Activity。什么特定的回调方法将处理这个?
How can we pass Android Home Screen Widget info ( putExtra maybe ) to an Activity.. What particular method callback will handle this one?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对您放置在
PendingIntent
中的Intent
使用putIntExtra()
。在创建
PendingIntent
时尝试使用FLAG_UPDATE_CURRENT
。Use
putIntExtra()
on theIntent
you place in thePendingIntent
.Try using
FLAG_UPDATE_CURRENT
when you create yourPendingIntent
.