我有一個應用程序中有一個選項卡小部件。其中一個標籤爲我加載了一個webview,並且它沒有正確加載。當我在我的手機瀏覽器中加載相同的地址時,它加載正常。這裏是web視圖我使用在應用程序中無法正確加載webview
import android.app.Activity;
import android.os.Bundle;
import android.webkit.WebView;
public class Sermons extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
WebView webview = new WebView(this);
setContentView(webview);
// Simplest usage: note that an exception will NOT be thrown
// if there is an error loading this page (see below).
webview.loadUrl("http://canyonculberts.com/ucc/?page_id=93");
webview.getSettings().setBuiltInZoomControls(true);
webview.setInitialScale(1);
webview.getSettings().setAppCacheEnabled(false);
}
}
人有什麼我可以做不同的這個,使其正常工作的任何想法的代碼?感謝您的任何幫助
確定我已經上網權限已經做了,我在哪裏可以做setJavaScriptEnable的是它的代碼,我在這裏或在那裏? – Bryan 2012-02-24 04:17:25
檢查更新。 – Cytown 2012-02-24 11:27:02
WOW,工作很好,完美工作謝謝你很多 – Bryan 2012-02-26 00:58:32