清单中的launchMode对服务有影响吗?

时间:2017-12-16 01:07:02

标签: android android-service android-manifest

<service
            android:name="MyService"
            android:launchMode="singleInstance"/>

清单中的android:launchMode对服务有效或仅对于活动有效吗?

1 个答案:

答案 0 :(得分:1)

  

清单中的launchMode对服务有影响吗?

不, Service听取意图过滤器。然后让Service打开Activity launchMode活动的Activity将决定如何在屏幕上启动Activity

Launchmode 担心在屏幕上启动 PropertyListSerialization 的方式。我们可以将其设置为活动标记中的属性

Detail about the Launch mode of Activity

其中,服务本身是缺少可视用户界面的标记。它们用于实现长时间运行的后台操作或可由其他应用程序调用的丰富通信API。

Developer guide for Service