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

[Android分享] 如何解决Android 5.0中出现的警告:Service Intent must be explicit

时间:2015-05-23 18:20:54      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

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!

[Android分享] 如何解决Android 5.0中出现的警告:Service Intent must be explicit

标签:

原文地址:http://www.cnblogs.com/blogofwu/p/4524593.html

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