gpt4 book ai didi

java - Android - 在新选项卡中打开 Firefox Intent url

转载 作者:太空宇宙 更新时间:2023-11-04 14:49:06 24 4
gpt4 key购买 nike

我有一个带有几个按钮的 View ,每个按钮都应该在 firefox 中打开不同的 url,但是在单击其中一个按钮并在 firefox 中打开 url 后,所有其他按钮只打开 firefox 但不导航到它们的 url .

这是我用于实现目的的代码:

Intent i = new Intent("android.intent.action.MAIN");
i.setComponent(new ComponentName("org.mozilla.firefox", "org.mozilla.firefox.App"));
Bundle b = new Bundle();
b.putBoolean("new_window", true); //suppose to set the new window
i.putExtras(b);
i.addCategory("android.intent.category.LAUNCHER");
i.setData(Uri.parse(url));
startActivity(i);

我应该如何编码才能打开每个按钮,单击新选项卡。

最佳答案

使用Intent.ACTION_VIEW :

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
// ...

关于java - Android - 在新选项卡中打开 Firefox Intent url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24022847/

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