在我的应用程序中,我正在使用另一个应用程序的 APK 文件安装另一个应用程序。我正在使用以下代码:
Intent intent= new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File( "sdcard/"+objApp.strApkPath)),
"application/vnd.android.package-archive");
startActivity(intent);
我想在以编程方式完成安装后关闭该安装视图。请帮忙。
谢谢。