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.
我需要检测破坏服务的来源。我在打电话时正在使用意图和额外功能
停止服务(意图)。
但是在 Service 类中在哪里捕捉到这个意图来采取行动。已经浏览了 android 文档,没有发现任何有用的信息。非常感谢任何帮助。
现在,当马克·墨菲说不可能时,我相信他。作为替代方案,您可以BroadcastReceiver在您Service的服务中注册一个以停止服务,然后receiver从您的应用程序中向其发送广播。在这里,您可以获取从intent发送到的所有信息receiver。之内receiver,干脆叫stopSelf()。
BroadcastReceiver
Service
receiver
intent
stopSelf()