Android隐式(远程)启动Service

Posted Jason_Lee155

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android隐式(远程)启动Service相关的知识,希望对你有一定的参考价值。

android启动service首先肯定可以的是:

Intent intent = Intent(context, service.class);
startService(intent);
// bindService(...);

如果是远程绑定service:

一。当然最先想到的是显式启动

  String packageName = ***packageName;
    String className = ***name;
    ComponentName component = new ComponentName(packageName, className);
    Intent explicitIntent= new Intent();
    explicitIntent.setComponent(component);

二.设置action和packageName

Intent intent = Intent();
intent.setAction("...");
intent.setPackage("...");
bindService(intent, conne, Context.);

其中第三行setPackage是指定你的action希望那个pakcage接收,这也是谷歌推荐使用的解决方案.

以上是关于Android隐式(远程)启动Service的主要内容,如果未能解决你的问题,请参考以下文章

android 在5.0以后不允许使用隐式Intent方式来启动Service

Android5.0隐式启动服务

android--显式跳转和隐式跳转

android隐式intent使用场景解析

[android] 采用aidl绑定远程服务

跨应用启动Service并传递数据