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.
我在我的 android 项目中创建了一项服务,当我在清单中声明它时,它在进程中单独运行,例如,
android:process=":MyService"
我知道,一旦你在单独的进程中创建服务;你不能从服务中访问任何变量。但在我的情况下,我想要两者,
1)在单独的进程中运行服务并且
2)从此服务访问变量。
我怎样才能做到这一点?
这样做有诀窍吗?
我不认为有任何直接的沟通。虽然您可以使用广播接收器。
从该服务发送广播,然后在另一个服务中注册广播接收器
也看看这个答案
Andoird中不同进程上运行的服务之间的通信?