场景

在使用bindService时第一个intent参数在声明时使用的

String actionName = "com.shoushuo.android.tts.intent.action.InvokeTts";
Intent intent = new Intent(actionName);
this.bindService(intent, connection, Context.BIND_AUTO_CREATE);

然后提示:

Service Intent must be explicit:Intent{

 

Android中提示:Service Intent must be explicit:Intent_包名

注:

关注公众号
霸道的程序猿
获取编程相关电子书、教程推送与免费下载。

实现

这是Android 5.0 (Lollipop) 之后的规定。 不能用包名的方式定义Service Intent, 而要用显性声明:   new Intent(context, xxxService.class);