上面的代碼:
activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
是正確和功能,我只是想我會提到,你也可以在視圖中嵌入瀏覽器用WebView很容易,就像這樣:
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
WebView顯然不是eclipse中列表的可用視圖,因此您必須手動添加XML,但它既不困難也不耗時。一旦你得到了你的Web視圖設置它的URL(和其他重要屬性)正是如此:
WebView mWebView;
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.getSettings().setBuiltInZoomControls(true);
mWebView.loadUrl("http://www.google.com");
希望那是有幫助:)
'ContentURI'從Android SDK中大約兩年前刪除。 – CommonsWare 2010-09-02 21:36:37