以编程方式从SD卡安装应用程序
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了以编程方式从SD卡安装应用程序相关的知识,希望对你有一定的参考价值。
我正在使用此代码从SD卡安装应用程序
Toast.makeText(this, "running", Toast.LENGTH_LONG).show();
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.parse("file:///sdcard/app.apk"),
"application/vnd.android.package-archive");
startActivity(promptInstall);
我如何解析错误:解析程序包时出现问题
我已在清单文件中授予许可
<uses-permission android:name="android.permission.INSTALL_PACKAGES" />
我已将apk放入sdcard
ps:正在通过文件管理器安装应用程序
答案
您可以更改指定URI的方式。试试这个;
Intent promptInstall = new Intent(Intent.ACTION_VIEW)
.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory()+File.separator+"<DIRECTORY_NAME>"+File.separator+"<YOUR_APK_FILE.apk>")),
"application/vnd.android.package-archive");
startActivity(promptInstall);
以上是关于以编程方式从SD卡安装应用程序的主要内容,如果未能解决你的问题,请参考以下文章
使用 Phonegap 以编程方式将文件从 SD 卡上传到远程服务器
从 Android for Work 应用程序访问 SD 卡数据