我想通過Android模擬器中的WebView顯示maps.google.com網站,但我沒有看到該網站並只看到加載。Android網站不顯示在webview中
我可以看到其他網站,如www.google.com。我是否需要爲像maps.google.com這樣的網站啓用更多設置?
權限在清單
<uses-permission android:name="android.permission.INTERNET" />
代碼
WebView view= (WebView) findViewById(R.id.view1);
View.getSettings().setJavaScriptEnabled(true);
View.getSettings().setBuiltInZoomControls(true);
View.getSettings().setSupportZoom(true);
View.loadUrl("http://maps.google.com");
logcat中是否顯示任何錯誤? –
請在這裏打印一些顯示錯誤的logcate .. –
@nik:「我可以看到其他網站,如www.google.com。」請閱讀這一行。並且他也沒有得到任何錯誤.. – user370305