Android调用浏览器打开网页内容

 try {
                Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(strUrl));
                intent.setClassName("com.android.browser", "com.android.browser.BrowserActivity");
                startActivity(intent);
            } catch (Exception e) {
                e.printStackTrace();
            }

 

你可能感兴趣的:(android)