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

前端之家收集整理的这篇文章主要介绍了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.f2er.com/android/310523.html

猜你在找的Android相关文章