Android WebView 中的 GoogleMap URL
我想在 Webview 中显示 googleMap Url,但它未加载。
我的 MapUrl 类型为:
http://maps.google.com/maps/place?cid=4936185307050533391
正在使用此 webview 代码:
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setAllowFileAccess(true);
webview.setWebViewClient(new MyWebViewClient());
webview.loadUrl(Uri.parse(MapUrl).toString());
如何使其工作?
谢谢
I want to show the googleMap Url in Webview but its not loading.
My MapUrl is of type:
http://maps.google.com/maps/place?cid=4936185307050533391
Am using this webview code:
webview.getSettings().setJavaScriptEnabled(true);
webview.getSettings().setAllowFileAccess(true);
webview.setWebViewClient(new MyWebViewClient());
webview.loadUrl(Uri.parse(MapUrl).toString());
How to make it work ?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我根本不是 Android 专业人士,但是当我尝试下面的代码时,它可以工作。
webview.xml
WebViewActivity.java
I am not a android pro at all but when i try the below code, it works.
webview.xml
WebViewActivity.java