Android 在 sdcard 上加载并运行 apk 文件

发布于 2024-11-27 13:13:27 字数 92 浏览 1 评论 0原文

我发现有些应用程序可以加载 sdcart 中存在的第三方应用程序,只需解压 apk 文件并运行...但我不知道如何...

有人知道并给我帮助吗?谢谢...

I have found that some app can load a third part app exist in sdcart just decompression the apk file and run... but I can not finger out how to ...

some body know and give me a help? thanks...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

可是我不能没有你 2024-12-04 13:13:28

您可以从您的应用程序安装并运行 .apk 文件,如下所示,

      Intent intent = new Intent(Intent.ACTION_VIEW);
      intent.setDataAndType(Uri.fromFile(new File(fileName)),  "application/vnd.android.package-archive");
      startActivity(intent);

您可以在以下链接中找到有关此内容的更多信息。 http://www.anddev.org/viewtopic.php?p=23928自动安装 apk

you can install and run the .apk file from your application like below

      Intent intent = new Intent(Intent.ACTION_VIEW);
      intent.setDataAndType(Uri.fromFile(new File(fileName)),  "application/vnd.android.package-archive");
      startActivity(intent);

you can fine more information on this in the following link. http://www.anddev.org/viewtopic.php?p=23928 and automatic install of apk

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文