Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setDataAndType(Uri.fromFile(new File(fileUrl)),
"application/vnd.Android.package-archive");
mContext.startActivity(intent);
注意红色的部分,要给一个新的任务栈才可以
转载请注明原文地址: https://ju.6miu.com/read-2147.html