Android WebView 中的 GoogleMap URL

发布于 2024-12-22 03:48:44 字数 459 浏览 0 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

天暗了我发光 2024-12-29 03:48:44

我根本不是 Android 专业人士,但是当我尝试下面的代码时,它可以工作。
webview.xml

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</WebView>

WebViewActivity.java

    public class WebViewActivity extends Activity {
    WebView webView;
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.webview);
    webView = (WebView) findViewById(R.id.webView1);
    webView.getSettings().setJavaScriptEnabled(true);
    webView.setWebViewClient(new WebViewClient());
    webView.loadUrl("http://maps.google.com/maps/place?cid=4936185307050533391");
}
}

I am not a android pro at all but when i try the below code, it works.
webview.xml

<?xml version="1.0" encoding="utf-8"?>
<WebView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/webView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
</WebView>

WebViewActivity.java

    public class WebViewActivity extends Activity {
    WebView webView;
    public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.webview);
    webView = (WebView) findViewById(R.id.webView1);
    webView.getSettings().setJavaScriptEnabled(true);
    webView.setWebViewClient(new WebViewClient());
    webView.loadUrl("http://maps.google.com/maps/place?cid=4936185307050533391");
}
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文