安装后自动启动应用

时间:2018-12-17 08:23:27

标签: android android-studio android-intent mobile-application

您可以在我的应用程序中添加功能,使应用程序可以从服务器下载其自身的最新版本并进行安装。目前,除了一个小问题外,这些应用程序能够完成所有过程。安装后,这些应用没有自动启动。这是调用意图开始安装的代码

Intent intent = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/KPCVer" + versionToDownload + ".apk"));
intent.setDataAndType(uri, "application/vnd.android.package-archive");
startActivity(intent);

这将调用默认的android安装管理器。安装完成后,管理器关闭,但应用程序未自行启动。我该怎么做,以便新安装的版本在安装后立即启动

0 个答案:

没有答案