如何从我的应用程序在 Android 的网络浏览器中打开 URL?

发布于 2022-03-22 23:30:15

如何从内置 Web 浏览器中的代码而不是在我的应用程序中打开 URL?

我试过这个:

try {
    Intent myIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(download_link));
    startActivity(myIntent);
} catch (ActivityNotFoundException e) {
    Toast.makeText(this, "No application can handle this request."
        + " Please install a webbrowser",  Toast.LENGTH_LONG).show();
    e.printStackTrace();
}

但我有一个例外:

No activity found to handle Intent{action=android.intent.action.VIEW data =www.google.com
关注者
0
被浏览
116
1 个回答
  • 面试哥
    面试哥 2022-03-22
    为面试而生,有面试问题,就找面试哥。

    尝试这个:

    Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
    startActivity(browserIntent);
    

    这对我来说很好。

    至于丢失的“http://”,我会做这样的事情:

    if (!url.startsWith("http://") && !url.startsWith("https://"))
       url = "http://" + url;
    

    我也可能会预先填充用户正在使用“http://”输入 URL 的 EditText。



知识点
面圈网VIP题库

面圈网VIP题库全新上线,海量真题题库资源。 90大类考试,超10万份考试真题开放下载啦

去下载看看