[Android分享] 如何解决Android 5.0中出现的警告:Service Intent must be explicit
Android 5.0程序运行报Service Intent must be explicit错误,原因是5.0的service必须显式调用
改成 Intent intent = new Intent(mContext, IService.class);
或者Intent intent = new Intent();
intent.setclass(xx.xx,xx.xx);
网上说的如下方式是不可行的:
Intent intent = new Intent("com.xx.xx.Service").setPackage("xx.xx.xx");
无法正常启动service!
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。