gpt4 book ai didi

android - 使用 URL 打开 Chrome 应用

转载 作者:太空狗 更新时间:2023-10-29 13:35:40 24 4
gpt4 key购买 nike

有没有办法从默认的 Android 浏览器打开 Android 上的 Chrome 应用程序?我可以打开该应用程序,但它不会将用户重定向到正确的页面。这是我尝试过的:

<a href="googlechrome://www.toovia.com">

我看到我可能必须形成一个 Intent URL,但我希望有比这更简单的方法。

这应该来自网页,不涉及 WebView 。

最佳答案

是的,但是如果系统上没有安装它,您将遇到 ActivityNotFoundException。如果它不可用,您应该通过普通浏览器启动:

String url = "http://mysuperwebsite";
try {
Intent i = new Intent("android.intent.action.MAIN");
i.setComponent(ComponentName.unflattenFromString("com.android.chrome/com.android.chrome.Main"));
i.addCategory("android.intent.category.LAUNCHER");
i.setData(Uri.parse(url));
startActivity(i);
}
catch(ActivityNotFoundException e) {
// Chrome is not installed
Intent i = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(i);
}

关于android - 使用 URL 打开 Chrome 应用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23255026/

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