Android 帮助从应用程序内下载 APK,无需通过浏览器
希望有人可以帮助我,
我想从我拥有的应用程序中下载 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该能够使用与视频相同的技术。但是,您必须指定 APK MIME 类型 (
application/vnd.android.package-archive
)。更新
例如:
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: