private void installApk(String fileUri) {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.parse("file://" + fileUri),
"application/vnd.android.package-archive");
startActivity(intent);
this.finish();
}
转载于:https://www.cnblogs.com/ren-gh/p/3752640.html