3

我需要在我的应用程序中启动 firefox mobile。我目前正在这样做:

String url = "http://www.google.it";
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setComponent(new ComponentName("org.mozilla.firefox_beta",
    "org.mozilla.firefox_beta.App"));
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setData(Uri.parse(url));
startActivity(intent);

如果 Firefox 没有运行,它就可以工作。如果它正在运行(在后台暂停),则此代码只需启动 firefox 而不加载我在代码中指定的 url。

4

2 回答 2

8

这对我有用:

adb shell am start -a android.intent.action.VIEW -n org.mozilla.firefox_beta/.App -d 'http://www.mozilla.org'

尝试更改您的:

Intent intent = new Intent(Intent.ACTION_MAIN, null);

Intent intent = new Intent(Intent.ACTION_VIEW, null);
于 2012-06-20T22:10:48.643 回答
0

尝试:

String url = "http://example.com/";
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
intent.setComponent(new ComponentName("org.mozilla.firefox", "org.mozilla.firefox.App"));
intent.setAction("org.mozilla.gecko.BOOKMARK");
Bundle b = new Bundle();
b.putBoolean("new_window", true);
intent.putExtras(b);
intent.setData(Uri.parse(url));

我不确定这是否适用于 Firefox 应用程序,但可能会有类似的东西。

于 2012-06-14T22:25:01.780 回答