我想在第三方应用程序的设备的SD卡中安装一个apk,它将有一个安装按钮。它应该在单击按钮时安装。
答案 0 :(得分:0)
如果您的第三方应用具有存储读取权限,则使用以下代码
读取apkIntent intent = new Intent(Intent.ACTION_VIEW);
apkName=YourApk.apk
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/YourPath/"+apkName)), "application/vnd.android.package-archive");
startActivity(intent);