android安装应用程序工具类详解编程语言

    /**  
         * 安装APK文件  
         [email protected] APK文件  
         *Version:  
         *author:YangQuanqing  
         */   
        private void installAPK(File file){   
            //按照系统安装文件的配置信息的意图过滤器才设置意图   
            Intent _Intent=new Intent();   
            _Intent.setAction("android.intent.action.VIEW");   
            _Intent.addCategory("android.intent.category.DEFAULT");   
            /*_Intent.setData(Uri.fromFile(file));  
            _Intent.setType("application/vnd.android.package-archive");*/   
            _Intent.setDataAndType(Uri.fromFile(file), "application/vnd.android.package-archive");   
            startActivity(_Intent);   
               
        }  

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/10695.html

(0)
上一篇 2021年7月19日
下一篇 2021年7月19日

相关推荐

发表回复

登录后才能评论