Google 地点页面未显示在 Android 网络视图中
我正在尝试显示
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要
对设置对象进行操作。这解决了我的问题。
You need to do
on the setting object. That fixed the problem for me.