gpt4 book ai didi

android - 向浏览器发送 Intent 以打开特定 URL

转载 作者:IT老高 更新时间:2023-10-28 12:48:31 37 4
gpt4 key购买 nike

我只是想知道如何向手机的浏览器启动一个 Intent 以打开一个特定的 URL 并显示它。

有人可以给我一个提示吗?

最佳答案

要打开 URL/网站,请执行以下操作:

String url = "http://www.example.com";
Intent i = new Intent(Intent.ACTION_VIEW);
i.setData(Uri.parse(url));
startActivity(i);

这里是 documentation of Intent.ACTION_VIEW .


来源:Opening a URL in Android's web browser from within application

关于android - 向浏览器发送 Intent 以打开特定 URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3004515/

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