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

Android如何安装存储在assets文件夹中的apk文件,第1张

概述我可以使用以下代码安装存储在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"); 我可以使用以下代码安装存储在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文件?可能吗?

解决方法 使用以下代码在sdcard上写入文件:
How to copy files from ‘assets’ folder to sdcard?
从该路径安装如下:
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);
总结

以上是内存溢出为你收集整理的Android如何安装存储在assets文件夹中的apk文件全部内容,希望文章能够帮你解决Android如何安装存储在assets文件夹中的apk文件所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131193.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存