Android如何安装存储在assets文件夹中的apk文件

San*_*ndy 6 android android-install-apk

我可以使用以下代码安装存储在SD卡上的apk文件:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File("/mnt/sdcard/downloads/Sample.apk")), "application/vnd.android.package-archive");
startActivity(intent);
Run Code Online (Sandbox Code Playgroud)

如何安装存储在assets文件夹中的apk文件?可能吗?

jee*_*eet 10

使用以下代码在SD卡上写入文件: 如何将文件从'assets'文件夹复制到SD卡? 从该路径安装如下:

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(Environment.getExternalStorageDirectory() + "/download/" + "app.apk")), "application/vnd.android.package-archive");
startActivity(intent);  
Run Code Online (Sandbox Code Playgroud)

  • 什么是手机没有SD卡而只有内存? (4认同)