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); 

 

你可能感兴趣的:(android)