我正在使用WebView在Android應用程序中打開網頁。 我所描述的佈局:使用瀏覽器打開網頁的WebView
<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
新增許可在Android清單文件:
<uses-permission android:name="android.permission.INTERNET" />
而且使用的WebView在我的活動課爲:
WebView theWebPage = new WebView(this);
setContentView(theWebPage);
theWebPage.loadUrl("http://www.google.com");
已經這樣做了,我在一些Android手機上運行了該應用。開啓後,應用程序要求(Chrome,Mozilla或電話上安裝的任何其他瀏覽器)使用哪個應用程序打開網頁,即「http://www.google.com」。
我想讓應用程序打開它內部的網頁。幫幫我?
看看這裏:http://stackoverflow.com/questions/7746409/android-webview-launches-browser-當通話,使用loadURL – 2014-08-29 14:59:26