<i id='qGDEE'><tr id='qGDEE'><dt id='qGDEE'><q id='qGDEE'><span id='qGDEE'><b id='qGDEE'><form id='qGDEE'><ins id='qGDEE'></ins><ul id='qGDEE'></ul><sub id='qGDEE'></sub></form><legend id='qGDEE'></legend><bdo id='qGDEE'><pre id='qGDEE'><center id='qGDEE'></center></pre></bdo></b><th id='qGDEE'></th></span></q></dt></tr></i><div id='qGDEE'><tfoot id='qGDEE'></tfoot><dl id='qGDEE'><fieldset id='qGDEE'></fieldset></dl></div>
  • <small id='qGDEE'></small><noframes id='qGDEE'>

      <tfoot id='qGDEE'></tfoot>
    1. <legend id='qGDEE'><style id='qGDEE'><dir id='qGDEE'><q id='qGDEE'></q></dir></style></legend>
      • <bdo id='qGDEE'></bdo><ul id='qGDEE'></ul>

        在 Android 2.0+ 的 WebView 中使用 navigator.geolocation.

        时间:2023-09-02

          <tbody id='Vb4mM'></tbody>
      1. <i id='Vb4mM'><tr id='Vb4mM'><dt id='Vb4mM'><q id='Vb4mM'><span id='Vb4mM'><b id='Vb4mM'><form id='Vb4mM'><ins id='Vb4mM'></ins><ul id='Vb4mM'></ul><sub id='Vb4mM'></sub></form><legend id='Vb4mM'></legend><bdo id='Vb4mM'><pre id='Vb4mM'><center id='Vb4mM'></center></pre></bdo></b><th id='Vb4mM'></th></span></q></dt></tr></i><div id='Vb4mM'><tfoot id='Vb4mM'></tfoot><dl id='Vb4mM'><fieldset id='Vb4mM'></fieldset></dl></div>
        • <tfoot id='Vb4mM'></tfoot>

            <small id='Vb4mM'></small><noframes id='Vb4mM'>

              <legend id='Vb4mM'><style id='Vb4mM'><dir id='Vb4mM'><q id='Vb4mM'></q></dir></style></legend>
                <bdo id='Vb4mM'></bdo><ul id='Vb4mM'></ul>
                  本文介绍了在 Android 2.0+ 的 WebView 中使用 navigator.geolocation.getCurrentPosition(PhoneGap 相关)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

                  问题描述

                  我一直在使用 PhoneGap,它非常棒,但我在 Verizon Droid w/2.0.1 上获取位置时遇到了问题(在 G1 w/1.6 上按预期工作).

                  I've been working with PhoneGap and it's been great, but I've run into a problem with getting location on a Verizon Droid w/ 2.0.1 (works as expected on a G1 w/ 1.6).

                  GeoLocation API 支持已在 2.0 (Eclair) 中添加到 Android,它可以在 Verizon Droid(2.0.1 上)的默认浏览器中运行.也就是说,如果我访问一个调用 navigator.geolocation.getCurrentPosition(success_callback, error_callback) 的网站,设备会在带有共享位置"或拒绝"选项的对话框中提示当前域想知道你的位置".如果我选择共享位置",success_callback 最终会被调用位置数据.

                  GeoLocation API Support was added to Android in 2.0 (Eclair) and it works in the default browser on a Verizon Droid (on 2.0.1). That is, if I visit a website that calls navigator.geolocation.getCurrentPosition(success_callback, error_callback), the device prompts that the current domain "wants to know your location" in a dialog with options to "Share location" or "decline". If I select "Share location", success_callback eventually gets called with location data.

                  如果我在 WebView 中访问同一个网站,对 navigator.geolocation.getCurrentPosition 的调用不会生成 javascript 错误,但不会显示共享您的位置"对话框,也不会调用任何回调.在 logcat 中,我看到似乎是一个相关的错误:02-15 10:37:00.413: ERROR/geolocationService(16871): Caught security exception registering for location updates from system. 这应该只发生在 DumpRenderTree 中."

                  If I visit the same website in a WebView, the call to navigator.geolocation.getCurrentPosition does not generate a javascript error, but the "share your location" dialog is not displayed and neither callback ever gets called. In logcat, I see what seems to be a related error: "02-15 10:37:00.413: ERROR/geolocationService(16871): Caught security exception registering for location updates from system. This should only happen in DumpRenderTree."

                  在我看来,WebView 未能注册位置更新,因为它没有所需的权限,而这又是未提示用户获得权限的结果.尽管在 Android 2.0 中的 Webkit 包中添加了几个与 GeoPermissions 相关的方法和对象,但我无法使用它们中的任何一个来使 WebView 显示 GeoPermission 对话框.

                  It seems to me that the WebView is failing to register for location updates because it does not have the required permission, which in turn is a result of not prompting the user for the permission. Although there were several methods and objects added to the Webkit package in Android 2.0 related to GeoPermissions, I haven't been able to use any of them to cause WebView to display the GeoPermission dialog.

                  以下内容基于 Android 开发人员指南中的 Hello, WebView 示例,但它添加了一些在 2.0 中添加的与 GeoPermissions 相关的调用和对象.*使用适当的 url 更新(获得 的许可作者 - 感谢 Oliver!).

                  The following is based on the Hello, WebView example from the Android Developer's Guide but it adds some of the calls and objects that were added in 2.0 related to GeoPermissions. *Updated with an appropriate url (with permission from the author - thanks Oliver!).

                  有没有人能够让这个工作?任何反馈都会很棒,谢谢!

                  Has anyone been able to get this working? Any feedback would be great, thanks!

                  package com.example.android.helloactivity;
                  
                  import android.app.Activity;
                  import android.os.Bundle; 
                  import android.webkit.GeolocationPermissions;
                  import android.webkit.WebChromeClient;
                  import android.webkit.WebView;
                  import android.webkit.GeolocationPermissions.Callback;
                  
                  public class HelloActivity extends Activity implements GeolocationPermissions.Callback{
                  
                  WebView webview;
                  String geoWebsiteURL = "http://maxheapsize.com/static/html5geolocationdemo.html";
                  public HelloActivity() {
                  }
                  
                  /**
                   * Called with the activity is first created.
                   */
                  @Override
                  public void onCreate(Bundle savedInstanceState) {
                      super.onCreate(savedInstanceState);
                  
                      setContentView(R.layout.hello_activity);
                  
                      webview = (WebView) findViewById(R.id.webview);
                      webview.getSettings().setJavaScriptEnabled(true);
                      webview.getSettings().setJavaScriptCanOpenWindowsAutomatically(true);
                      webview.getSettings().setGeolocationEnabled(true);  //seems like if i set this, the webview should prompt when I call navigator.geolocation.getCurrentPosition
                      GeolocationPermissions geoPerm = new GeolocationPermissions(); //added in API Level 5 but no methods exposed until API level 7
                      GeoClient geo = new GeoClient();
                      webview.setWebChromeClient(geo);        
                      String origin = ""; //how to get origin in correct format?
                      geo.onGeolocationPermissionsShowPrompt(origin, this);  //obviously not how this is meant to be used but expected usage not documented
                      webview.loadUrl(geoWebsiteURL);        
                  
                  }
                  
                  public void invoke(String origin, boolean allow, boolean remember) {
                  
                  }
                  
                  final class GeoClient extends WebChromeClient {
                  
                  @Override
                  public void onGeolocationPermissionsShowPrompt(String origin,
                  Callback callback) {
                  // TODO Auto-generated method stub
                  super.onGeolocationPermissionsShowPrompt(origin, callback);
                  callback.invoke(origin, true, false);
                  }
                  
                  }
                  
                  }
                  

                  推荐答案

                  我刚刚在装有 Android 2.1 的 Nexus One 上试用了您的代码,它运行良好.请记住,您需要为清单添加必要的权限:

                  I just tried your code on a Nexus One with Android 2.1, and it works fine. Remember that you'll need to add the necessary permissions to your manifest:

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

                  这篇关于在 Android 2.0+ 的 WebView 中使用 navigator.geolocation.getCurrentPosition(PhoneGap 相关)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!

                  上一篇:Android - 如何获取当前位置(纬度和经度)? 下一篇:phonegap 地理位置总是在超时时失败

                  相关文章

                  最新文章

                  1. <i id='Lywvh'><tr id='Lywvh'><dt id='Lywvh'><q id='Lywvh'><span id='Lywvh'><b id='Lywvh'><form id='Lywvh'><ins id='Lywvh'></ins><ul id='Lywvh'></ul><sub id='Lywvh'></sub></form><legend id='Lywvh'></legend><bdo id='Lywvh'><pre id='Lywvh'><center id='Lywvh'></center></pre></bdo></b><th id='Lywvh'></th></span></q></dt></tr></i><div id='Lywvh'><tfoot id='Lywvh'></tfoot><dl id='Lywvh'><fieldset id='Lywvh'></fieldset></dl></div>
                  2. <legend id='Lywvh'><style id='Lywvh'><dir id='Lywvh'><q id='Lywvh'></q></dir></style></legend>
                    <tfoot id='Lywvh'></tfoot>

                      <bdo id='Lywvh'></bdo><ul id='Lywvh'></ul>

                      <small id='Lywvh'></small><noframes id='Lywvh'>