Android 的 webview 中的地理定位

发布于 2024-10-14 17:59:04 字数 708 浏览 2 评论 0原文

我开发了一个Web应用程序,并尝试使用webview。除了地理位置(在网络中完美工作)之外,一切都工作正常。

有人有带有地理定位的网络视图的示例吗?

这是webview的代码:

package com.androidpeople.view;

    import android.app.Activity;
    import android.os.Bundle;
    import android.webkit.WebView;
    
    public class WebViewExample extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        WebView webView = (WebView) findViewById(R.id.webview);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.loadUrl("http://myweb.com");
        webView.setWebViewClient(new HelloWebViewClient());
    }
}

I developed a web application and I tried to use webview. Everything works fine except the geolocation (which works perfectly in web)

Does anybody have an example of a webview with geolocation?

This is the code for webview:

package com.androidpeople.view;

    import android.app.Activity;
    import android.os.Bundle;
    import android.webkit.WebView;
    
    public class WebViewExample extends Activity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        WebView webView = (WebView) findViewById(R.id.webview);
        webView.getSettings().setJavaScriptEnabled(true);
        webView.loadUrl("http://myweb.com");
        webView.setWebViewClient(new HelloWebViewClient());
    }
}

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

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

发布评论

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

评论(2

几度春秋 2024-10-21 17:59:04

尝试:

myWebView.getSettings().setGeolocationDatabasePath(<yourpath>);
myWebView.getSettings().setGeolocationEnabled(true);  

Try:

myWebView.getSettings().setGeolocationDatabasePath(<yourpath>);
myWebView.getSettings().setGeolocationEnabled(true);  
摇划花蜜的午后 2024-10-21 17:59:04

在加载 url 之前在我的 java 代码中添加这些行,然后您将能够看到地理坐标。

webView.getSettings().setGeolocationEnabled(true);
webView.setWebChromeClient(new WebChromeClient() {
     public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback) {
        // callback.invoke(String origin, boolean allow, boolean remember);              
        callback.invoke(origin, true, false);
     }
    });

有关更多信息,请遵循此链接中的解决方案 -

Add these lines in my java code before loading the url and then you will be able to see the geo-coordinates.

webView.getSettings().setGeolocationEnabled(true);
webView.setWebChromeClient(new WebChromeClient() {
     public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback) {
        // callback.invoke(String origin, boolean allow, boolean remember);              
        callback.invoke(origin, true, false);
     }
    });

For more information follow the solution in this link -

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