Google 地点页面未显示在 Android 网络视图中

发布于 2024-12-07 07:46:11 字数 692 浏览 0 评论 0原文

我正在尝试显示

http://www.google.co.jp /m/place#ipd:mode=home

通过 Android 模拟器中的 WebView 访问网站,但我看不到网页 网站,并且在页面的地点标签下仅看到空白区域。

我可以看到其他网站,例如 www.google.com。

我需要为 Google 地点页面启用更多设置吗?

清单

<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://www.google.co.jp/m/place#ipd:mode=home");

I am trying to show

http://www.google.co.jp/m/place#ipd:mode=home

website thru WebView in Android emulator but I am not seeing the web
site and seeing only blank space under the place tag of the page.

I am able to see other sites like www.google.com.

Do I need to enable more settings for the google place page?

Permission in the manifest

<uses-permission android:name="android.permission.INTERNET" />

Code

WebView view= (WebView) findViewById(R.id.view1);
View.getSettings().setJavaScriptEnabled(true);
View.getSettings().setBuiltInZoomControls(true);
View.getSettings().setSupportZoom(true);
View.loadUrl(" http://www.google.co.jp/m/place#ipd:mode=home");

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

-柠檬树下少年和吉他 2024-12-14 07:46:11

您需要

view.getSettings().setAppCacheEnabled(true);
view.getSettings().setDomStorageEnabled(true);

对设置对象进行操作。这解决了我的问题。

You need to do

view.getSettings().setAppCacheEnabled(true);
view.getSettings().setDomStorageEnabled(true);

on the setting object. That fixed the problem for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文