Android 帮助从应用程序内下载 APK,无需通过浏览器

发布于 2024-10-30 17:43:56 字数 389 浏览 0 评论 0原文

希望有人可以帮助我,

我想从我拥有的应用程序中下载 APK,但不通过 uri 通过浏览器。

我可以用这样的视频文件来做到这一点

Uri uri = Uri.parse(url);
    //Intent intent=new Intent(Intent.ACTION_VIEW,uri);
    Intent intent=new Intent(Intent.ACTION_VIEW); intent.setDataAndType(uri, "video/mp4");
    startActivity(intent); 

,但找不到用 .apk 文件来做到这一点的方法,因此开始安装一个新的 app.apk。

希望有人可以帮忙 谢谢 露西X

Hope someone can help me on this,

I would like to download an APK from within an app i have, but without going through the browser via a uri.

I can do it with a video file like so

Uri uri = Uri.parse(url);
    //Intent intent=new Intent(Intent.ACTION_VIEW,uri);
    Intent intent=new Intent(Intent.ACTION_VIEW); intent.setDataAndType(uri, "video/mp4");
    startActivity(intent); 

But cannot find a way to do it with a .apk file, so a new app.apk with start to install.

Hope someone can help
thanks
Lucy X

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

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

发布评论

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

评论(1

椒妓 2024-11-06 17:43:56

您应该能够使用与视频相同的技术。但是,您必须指定 APK MIME 类型 (application/vnd.android.package-archive)。

更新

例如:

Intent thingyToInstall=new Intent(Intent.ACTION_VIEW);

thingyToInstall.setDataAndType(Uri.parse("http://here/is/the/path/to/the.apk"), "application/vnd.android.package-archive");
startActivity(thingyToInstall);

You should be able to use the same technique as you are using for the video. However, you have to specify the APK MIME type (application/vnd.android.package-archive).

UPDATE

For example:

Intent thingyToInstall=new Intent(Intent.ACTION_VIEW);

thingyToInstall.setDataAndType(Uri.parse("http://here/is/the/path/to/the.apk"), "application/vnd.android.package-archive");
startActivity(thingyToInstall);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文