0

我无法让 Google Latitude 位置徽章在 WebView 中正确显示。

我期待这样的事情: http: //dl.dropbox.com/u/4234644/Capture.JPG 带有地图图像/照片。

但我得到了这个:http ://dl.dropbox.com/u/4234644/device-2011-08-16-203442.jpg 没有地图图像/照片。

如您所见,我的位置正在被报告,但我没有得到地图或照片。

这是我的代码: -

        AlertDialog.Builder aboutAlert = new AlertDialog.Builder(this);

        aboutAlert.setTitle("Expander Dip Switch Settings");

        aboutAlert.setIcon(R.drawable.icon);

        WebView browser = new WebView(this);

        browser.setBackgroundColor(0);

        String html = "<html><body><DIV ALIGN=CENTER><iframe src=\"http://www.google.com/latitude/apps/badge/api?user=4264905420631960930&type=iframe&maptype=roadmap&z=10\" width=\"150\" height=\"250\" frameborder=\"0\"></iframe></DIV></body></html>";

        browser.loadData(html, "text/html", "utf-8");

        aboutAlert.setView(browser);

        aboutAlert.setNeutralButton("Close", null);

        aboutAlert.show();

一个简单的 url (maps.google.com) 将显示各种屏幕元素,但同样没有地图。

任何想法将不胜感激。

此致

4

1 回答 1

0

终于明白了!

需要启用脚本。

   browser.getSettings().setJavaScriptEnabled(true);

在查看徽章 html 时,您并没有完全跳出来,哦,问题解决了。

于 2011-08-20T19:05:40.617 回答