gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:41:34 24 4
gpt4 key购买 nike

我可以使用以下代码安装存储在 sdcard 上的 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文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9222711/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com