我的设备上安装了两个应用程序,每个应用程序都有一个服务组件,这两个服务具有相同的意图过滤器声明,如下所示:
<intent-filter> <action android:name="com.example.intent.action.SHOW"/> </intent-filter>
我以这种方式开始服务:
Intent intent = new Intent(); intent.setAction("com.example.intent.action.SHOW"); startService(intent);
我发现这两个服务中的一个开始了,但我不知道这是怎么发生的.我们知道,如果我们用相同的意图过滤器声明来编写两个活动,将弹出一个对话框,让用户选择一个活动来完成我感到困惑的是,Android如何选择在这些具有相同意图过滤器的人中启动服务,这个决策的策略是什么?
提前致谢!
更新:
Yury是对的,这里是ICS中的框架/ base / services / java / com / android / server / pm / PackageMangerService.java中的代码段:
public ResolveInfo resolveService(Intent intent,String resolvedType,int flags) { List<ResolveInfo> query = queryIntentServices(intent,resolvedType,flags); if (query != null) { if (query.size() >= 1) { // If there is more than one service with the same priority,// just arbitrarily pick the first one. return query.get(0); } } return null; }
我们可以看到,如果有多个服务匹配请求的意图,Android将随意选择一个启动.但是,哪个服务将实际启动是意想不到的.
解决方法
如果有超过1个服务具有相同的意图过滤器,则Android操作系统会随机选择其中一个服务并传递给其意图.