标签: android service android-pendingintent
当我阅读官方文件“服务”时,有一些句子:
但是,如果您希望服务返回结果,则启动服务的客户端可以为广播创建PendingIntent(使用getBroadcast())并将其传递给启动服务的Intent中的服务。然后,该服务可以使用广播来传递结果。
根据该文件的描述,我该如何实施上述文件中描述的内容?