使用Intent在Android的Firefox中打开URL

时间:2019-03-24 12:48:14

标签: android google-chrome firefox android-intent intentfilter

通常,我们可以使用以下意图在Chrome中打开一个网址:

startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("googlechrome://navigate?url=http://google.com")))

但是,如何使用Firefox for Android实现相同的目的?是否有类似firefox://navigate?url的东西?

2 个答案:

答案 0 :(得分:0)

您可以尝试以下代码

 Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
 intent.setComponent(new ComponentName("org.mozilla.firefox","org.mozilla.firefox.App"));
 this.startActivity(intent);

答案 1 :(得分:0)

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
intent.setComponent(new ComponentName("org.mozilla.firefox","org.mozilla.firefox.App"));
this.startActivity(intent);