通常,我们可以使用以下意图在Chrome中打开一个网址:
startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("googlechrome://navigate?url=http://google.com")))
但是,如何使用Firefox for Android实现相同的目的?是否有类似firefox://navigate?url
的东西?
答案 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);