Android 的 webview 中的地理定位
我开发了一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试:
Try:
在加载 url 之前在我的 java 代码中添加这些行,然后您将能够看到地理坐标。
有关更多信息,请遵循此链接中的解决方案 -
Add these lines in my java code before loading the url and then you will be able to see the geo-coordinates.
For more information follow the solution in this link -