码迷,mamicode.com
首页 > 移动开发 > 详细

android 直接启动其他应用的Service

时间:2014-08-05 18:25:39      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:android   style   blog   color   io   art   ar   cti   

最近在做一个小插件,没有图标没有activity,利用其他APK启动它的service。

直奔主题,插件A,安装插件的应用B.

B安装A后,由于A刚被安装,没有注册广播接收器,这里不考虑AIDL。需求需要在B安装完A后让A的service启动。

代码和启动activity类似。

Intent intent = new Intent();
                intent.setComponent(new ComponentName("com.a.b.c",
                        "com.a.b.c.XXService"));
                intent.setAction(Intent.ACTION_VIEW);
                startService(intent);

但是需要给com.a.b.c.XXService配置一个属性:

<service
            android:name="com.a.b.c.XXService"
            android:exported="true" />

即可。

android 直接启动其他应用的Service,布布扣,bubuko.com

android 直接启动其他应用的Service

标签:android   style   blog   color   io   art   ar   cti   

原文地址:http://www.cnblogs.com/xirtam/p/3892453.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!