Android启动浏览器,但未指定URL

时间:2011-09-14 19:29:36

标签: android android-intent

如何在不指定网址的情况下从活动启动浏览器。我想打开浏览器,以便用户可以继续浏览而无需更改他们所在的页面?

解: 下面的答案是正确和有效的,但为了更具体的未来读者,这是工作代码:

Intent i = new Intent();
i.setAction(Intent.ACTION_MAIN);
i.addCategory(Intent.CATEGORY_LAUNCHER);
i.setAction("com.android.browser");
ComponentName comp = new ComponentName("com.android.browser", "com.android.browser.BrowserActivity");
i.setComponent(comp);
i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(i);

谢谢!

3 个答案:

答案 0 :(得分:4)

使用Intent#setComponent()设置浏览器的包和类名。然后开始活动。

答案 1 :(得分:2)

如果它( ComponentName(“com.android.browser”,“com.android.browser.BrowserActivity”))将来发生变化,您可以尝试类似下面的代码:

public static ComponentName getDefaultBrowserComponent(Context context) {
    Intent i = new Intent()
        .setAction(Intent.ACTION_VIEW)
        .setData(new Uri.Builder()
                .scheme("http")
                .authority("x.y.z")
                .appendQueryParameter("q", "x")
                .build()
                );
    PackageManager pm = context.getPackageManager();
    ResolveInfo default_ri = pm.resolveActivity(i, 0); // may be a chooser
    ResolveInfo browser_ri = null;
    List<ResolveInfo> rList = pm.queryIntentActivities(i, 0);
    for (ResolveInfo ri : rList) {
        if (ri.activityInfo.packageName.equals(default_ri.activityInfo.packageName)
         && ri.activityInfo.name.equals(default_ri.activityInfo.name)
        ) {
            return ri2cn(default_ri);
        } else if ("com.android.browser".equals(ri.activityInfo.packageName)) {
            browser_ri = ri;
        }
    }
    if (browser_ri != null) {
        return ri2cn(browser_ri);
    } else if (rList.size() > 0) {
        return ri2cn(rList.get(0));
    } else if (default_ri == null) {
        return null;
    } else {
        return ri2cn(default_ri);
    }
}
private static ComponentName ri2cn(ResolveInfo ri) {
    return new ComponentName(ri.activityInfo.packageName, ri.activityInfo.name);
}

基本上,我在这里构建一个意图来查看虚拟http页面,获取可以处理意图的活动列表,将其与resolveActivity()返回的默认处理程序进行比较并返回一些内容。我不需要检查是否有启动器MAIN操作(我的代码使用VIEW操作),但您可能应该这样做。

答案 2 :(得分:2)

这个答案可能有所帮助。来自How to open the default android browser without specifying an URL?

PackageManager pm = getPackageManager();
Intent queryIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://www.google.com"));
ActivityInfo af = queryIntent.resolveActivityInfo(pm, 0);
Intent launchIntent = new Intent(Intent.ACTION_MAIN);
launchIntent.setClassName(af.packageName, af.name);
startActivity(launchIntent);