Android中提示:Service Intent must be explicit:Intent
生活随笔
收集整理的這篇文章主要介紹了
Android中提示:Service Intent must be explicit:Intent
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
場景
在使用bindService時第一個intent參數(shù)在聲明時使用的
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{
?
注:
博客:
https://blog.csdn.net/badao_liumang_qizhi
關注公眾號
霸道的程序猿
獲取編程相關電子書、教程推送與免費下載。
實現(xiàn)
這是Android 5.0 (Lollipop) 之后的規(guī)定。 不能用包名的方式定義Service Intent, 而要用顯性聲明:?? new Intent(context, xxxService.class);
總結
以上是生活随笔為你收集整理的Android中提示:Service Intent must be explicit:Intent的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: AndroidStudio打开新项目提示
- 下一篇: AndroidStudio中将项目运行在