Update: 2017/12/4 16:20
突然想到了很多坑,先来占个位置。
1、当手机没有打开定位服务的时候,必须先要打开定位服务。参考:LocationService
。
2、定位服务还可能分多种,根据具体需求做相关处理。
- only GPS
- WLAN && cellular networks
- GPS && WLAN && cellular networks
最近遇到了一个问题,有一个需求是使用
WebView
来加载一个网页地图定位。以前都是使用 Android 原生的来开发(当然这种最好),不过各个方面都能行那更好嘛。想想应该很简单,然而一不小心就掉进了一个大坑,地图无法定位(这里一般我都会想肯定是这个网页的锅)。然而IOS
端可以,这个坑就只能自己填了。
第一步,百度(谷歌要翻墙,而且公司网速巨慢),一看一大堆。照着敲一敲。这里我说一些必要的吧。如果你搜过了,你可以直接看文章末尾。
权限
<!-- 网络权限,加载网络网页需要联网 -->
<uses-permission android:name="android.permission.INTERNET" />
<!-- 粗略定位权限,允许一个程序访问CellID或WiFi热点来获取粗略的位置 -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<!-- 精确定位权限,允许一个程序访问精良位置(如GPS) -->
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
注意:定位权限属于危险权限,在 Android 6.0 之后需要在代码中动态申请。
具体代码
mWebView = findViewById(R.id.web_view);
WebSettings settings = mWebView.getSettings();
// 允许调用 JS,因为网页地图使用的是 JS 定位
settings.setJavaScriptEnabled(true);
// 允许使用数据库
settings.setDatabaseEnabled(true);
settings.setGeolocationEnabled(true);
String dir = getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath(); settings.setGeolocationDatabasePath(dir);
settings.setDomStorageEnabled(true);
mWebView.setWebChromeClient(new WebChromeClient() {
@Override
public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback) {
// 这里是处理是否同意定位权限,可以在这里写一个 AlertDialog 来模仿浏览器弹出来的定位权限申请。
//public void invoke(String origin, boolean allow, boolean retain);
callback.invoke(origin, true, false);
}
});
mWebView.setWebViewClient(new WebViewClient() {
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
view.loadUrl(url);
return super.shouldOverrideUrlLoading(view, url);
}
});
好了写到这里也就大功告成了,然而一运行,却失败了。最开始我以为是这个网页的锅。然而我用手机自带浏览器打开居然可以,它会弹出一个窗口如下:
还以为是这个的原因了,可是我不是 callback.invoke(origin, true, false);
同意了么。其实和这个没关系...
这里是文章末尾
今天早上我突然在锤子(API level 19)设置里面看到了一个定位服务,打开之后就在上面运行成功了,十分兴奋。然而还有一个大坑等着我,我又在我的红米(API level 24) 上面运行了一下,失败了。万分苦恼,搜索出来的结果都是千篇一律的,可是为什么我失败了了?漫无目的的在网上浏览,没想到还真找到了。
文章地址://www.greatytc.com/p/798cbc2b27a9
在文章末尾说到了将 targetSdkVersion
改为 23 就可以了。我的是 26。一改,果然成功。
这一系列的现象让我离真理又进了一步。想起还看到了一个过时方法:setGeolocationDatabasePath
。然后去查了查这个方法,果然是它的锅。
setGeolocationDatabasePath
added in API level 5
deprecated in API level 24
API level 5 ~ 23
This will update WebCore when the Sync runs in the C++ side.
API level 24 ~ Now
Geolocation database are managed by the implementation and calling this method will have no effect.
Sets the path where the Geolocation databases should be saved. In order for Geolocation permissions and cached positions to be persisted, this method must be called with a path to which the application can write.
Parameters | |
---|---|
databasePath | String: a path to the directory where databases should be saved. |
void setGeolocationDatabasePath (String databasePath)
Parameters | |
---|---|
databasePath | String: a path to the directory where databases should be saved. |
这里英文很简单,就不翻译了(其实是懒(o)/~),大致意思是说,这个方法在 API level 24 的时候被废弃了,需要自己去实现管理这个数据库。然而我不会┓( ∀
)┏。于是就只有改成了 targetSdkVersion:23
。
targetSdkVersion 的作用自己去百度吧。
好像也可以代码中动态来处理,有兴趣的可以去试试。
坚持写了这么多,扛不住了,先溜了~!