从小部件调用活动
我不想创建一个活动,该活动将使用短信管理器发送短信,然后,我不想在单击小部件按钮时调用此活动,以便发送短信。这可能吗?
I wan't to create an activity, that will send SMS using an smsmanager, and then, I wan't to call this activity on widget button click, so that sms is sent. Is this posible ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想从小部件启动活动,只需在某些视图上使用remoteViews.setOnClickPendingIntent并使用PendingIntent.getActvitiy创建启动活动的PendingIntent。
If you want to start an activity from a widget, just use remoteViews.setOnClickPendingIntent on some view and use PendingIntent.getActvitiy to create a PendingIntent that launches the activity.