微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

Android如何安装存储在assets文件夹中的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);

如何安装存储在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);

原文地址:https://www.jb51.cc/android/310523.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐