【溯源码 燕窝】【最强赚钱源码】【短信传话源码】getApplicationInfo源码

2024-11-26 19:41:20 来源:dnfqct源码 分类:休闲

1.如何解决android 5.0中出现的警告service intent must be expl

getApplicationInfo源码

如何解决android 5.0中出现的警告service intent must be expl

       æœ‰äº›æ—¶å€™æˆ‘们使用Service的时需要采用隐私启动的方式,但是Android 5.0一出来后,其中有个特性就是Service Intent must be explitict,也就是说从Lollipop开始,service服务必须采用显示方式启动。

       è€Œandroid源码是这样写的(源码位置:sdk/sources/android-/android/app/ContextImpl.java):

       private void validateServiceIntent(Intent service) {

        if (service.getComponent() == null && service.getPackage() == null) {

        if (getApplicationInfo().targetSdkVersion >= Build.VERSION_CODES.LOLLIPOP) {

        IllegalArgumentException ex = new IllegalArgumentException(

        "Service Intent must be explicit: " + service);

        throw ex;

        } else {

        Log.w(TAG,源码溯源码 燕窝 "Implicit intents with startService are not safe: " + service

        + " " + Debug.getCallers(2, 3));

        }

        }

        }

       å¤åˆ¶ä»£ç 

       æ—¢ç„¶ï¼Œæºç é‡Œæ˜¯è¿™æ ·å†™çš„,那么这里有两种解决方法:

       1、设置Action和packageName:

       å‚考代码如下:

       Intent mIntent = new Intent();

       mIntent.setAction("XXX.XXX.XXX");//你定义的service的action

       mIntent.setPackage(getPackageName());//这里你需要设置你应用的包名

       context.startService(mIntent);

       å¤åˆ¶ä»£ç 

       æ­¤æ–¹å¼æ˜¯google官方推荐使用的解决方法。

       2、将隐式启动转换为显示启动:

       public static Intent getExplicitIntent(Context context, Intent implicitIntent) {

        // Retrieve all services that can match the given intent

        PackageManager pm = context.getPackageManager();

        List<ResolveInfo> resolveInfo = pm.queryIntentServices(implicitIntent, 0);

        // Make sure only one match was found

        if (resolveInfo == null || resolveInfo.size() != 1) {

        return null;

        }

        // Get component info and create ComponentName

        ResolveInfo serviceInfo = resolveInfo.get(0);

        String packageName = serviceInfo.serviceInfo.packageName;

        String className = serviceInfo.serviceInfo.name;

        ComponentName component = new ComponentName(packageName, className);

        // Create a new intent. Use the old one for extras and such reuse

        Intent explicitIntent = new Intent(implicitIntent);

        // Set the component to be explicit

        explicitIntent.setComponent(component);

        return explicitIntent;

        }

       å¤åˆ¶ä»£ç 

       è°ƒç”¨æ–¹å¼å¦‚下:

       Intent mIntent = new Intent();

       mIntent.setAction("XXX.XXX.XXX");

       Intent eintent = new Intent(getExplicitIntent(mContext,mIntent));

       context.startService(eintent);

更多资讯请点击:休闲

热门资讯

pc博彩源码

2024-11-26 19:171805人浏览

spark 源码下载

2024-11-26 18:592486人浏览

源码防护

2024-11-26 18:09647人浏览

彩虹app源码_彩虹正版源码下载

2024-11-26 17:17914人浏览

站群系统源码

2024-11-26 17:161681人浏览

推荐资讯

letsencrypt php源码

1.nginx 文件配置 如何设置域名nginx 文件配置 如何设置域名 前言: 这里我自己从官方克隆了一版到自己的git平台汉化了一下说明,这里简单介绍一下我个人的配置,详细文档可到//ac

信息发布网站源码_信息发布网站源码是什么

1.网站源码与模板及网站管理系统区别与关系2.怎么做网站源码3.成品网站源码1688免费推荐:没有编程知识也能轻松上手网站源码与模板及网站管理系统区别与关系 网站源码: 就是一个网站应用程序的

个人免签源码_个人免签源码 监控怎么弄

1.V免签安装搭建教程2.聚合收款码在哪里申请?3.模板兔(modown)主题设置教程4.苹果H5网页封装APP免签名稳定不掉 、免签版描述文件封装、网站网页WEB转换APP苹果ios/安卓apk封装