Android 如何让引入的lib库中的Service在系统中唯一

发布于 2022-09-04 22:33:25 字数 856 浏览 18 评论 0

首先,我有一个lib库,库里面定义了以个Service:

<application
    android:allowBackup="true"
    android:label="@string/app_name"
    android:supportsRtl="true">
    <service
        android:name=".SharedService"
        android:process="com.lib.aidl.SharedService"
        android:enabled="true"
        android:exported="true">
    </service>
</application>

现在,加入有两个app都引入了这个库,然后在各自的代码里都调用了:

startService(new Intent(context, SharedService.class))

我现在想的是系统中应该只有一个SharedService的实例,在进程com.lib.aidl.SharedService中。

但是实际情况是有两个SharedService的实例,它们都在进程名为com.lib.aidl.SharedService的进程中,但是进程id是不一样的。这是为什么?

我现在想让系统中仅出现一个SharedService的实例,当第二次调用startService时回调onStartCommand方法,这个可以做到么?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

初吻给了烟 2022-09-11 22:33:25

android:process="com.lib.aidl.SharedService"

替换成

android:process=":com.lib.aidl.SharedService"

试试

注意,加了个 ':'

The name of the process where the service is to run. Normally, all components of an application run in the default process created for the application. It has the same name as the application package. The <application> element's process attribute can set a different default for all components. But component can override the default with its own process attribute, allowing you to spread your application across multiple processes.
If the name assigned to this attribute begins with a colon (':'), a new process, private to the application, is created when it's needed and the service runs in that process. If the process name begins with a lowercase character, the service will run in a global process of that name, provided that it has permission to do so. This allows components in different applications to share a process, reducing resource usage.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文