Android 代码安装APK文件

代码安装APK文件

Intent intent = new Intent(Intent.ACTION_VIEW);   
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file),"application/vnd.android.package-archive");    
startActivity(intent); 
原文地址:https://www.cnblogs.com/rfheh/p/4164837.html