繁体   English   中英

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

[英]Android how to install apk file stored in assets folder

我可以使用以下代码安装存储在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);

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

使用以下代码在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);  

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM