Android关于WebView中无法定位的问题解决
作者:键盘上的麒麟臂
本篇文章主要介绍了Android关于WebView中无法定位的问题解决,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧
之前碰到个问题,使用webview的时候无法定位,最近19大没法墙,只能去百度逛逛,发现有人说要这么做
WebSettings settings = wbContent.getSettings(); settings.setJavaScriptEnabled(true); settings.setJavaScriptCanOpenWindowsAutomatically(true); settings.setGeolocationEnabled(true); settings.setDomStorageEnabled(true); settings.setDatabaseEnabled(true); String dir = this.getApplicationContext().getDir("database", Context.MODE_PRIVATE).getPath(); settings.setGeolocationDatabasePath(dir); webChromeClient = new WebChromeClient(){ @Override public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback) { callback.invoke(origin, true, true); super.onGeolocationPermissionsShowPrompt(origin, callback); } }; wbContent.setWebChromeClient(webChromeClient); wbContent.loadUrl("https://xxxxxxxxxxxxxxxxxxxxxxxx");
网上很多地方说加了这段代码之后就可以正常定位了,然而我加上之后还是没有什么卵用。没办法,百度就是没谷歌给力。
看了下日志,说我没有获取到权限,但是代码中的callback.invoke(origin, true, true);是获取定位权限的操作啊。
我想了想,突然想到了6.0之后要动态申请权限。
我这样加入动态申请权限的代码
if (Build.VERSION.SDK_INT >= 23) { int checkPermission = ContextCompat.checkSelfPermission(LocationTestActivity.this, Manifest.permission.ACCESS_COARSE_LOCATION); if (checkPermission != PackageManager.PERMISSION_GRANTED) { ActivityCompat.requestPermissions(LocationTestActivity.this, new String[]{Manifest.permission.ACCESS_COARSE_LOCATION}, 1); ActivityCompat.requestPermissions(LocationTestActivity.this, new String[]{Manifest.permission.ACCESS_FINE_LOCATION}, 1); }else { wbContent.loadUrl("https://xxxxxxxxxxxxxxxxxxxxxxxx"); } }
发现这样就能正常的获取到定位的结果,有的人可能不知道要在哪里动态申请,其实这要看你具体的流程,你也可以在跳转到这个页面的时候申请,也可以在展示网页的时候申请。
最后说一下,onGeolocationPermissionsShowPrompt这个方法只会调用一次,和动态申请权限一样,只会在第一次调用。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。
您可能感兴趣的文章:
- Android如何让WebView中的HTML5页面实现视频全屏播放
- Android编程实现WebView全屏播放的方法(附源码)
- Android编程使WebView支持HTML5 Video全屏播放的解决方法
- Android使用WebView播放flash的方法
- Android WebView与JS交互全面详解(小结)
- 详解android 用webview加载网页(https和http)
- Android webview如何加载HTML,CSS等语言的示例
- Android Webview与ScrollView的滚动兼容及留白处理的方法
- Android开发实现webview中img标签加载本地图片的方法
- Android studio点击跳转WebView详解
- 详解android webView独立进程通讯方式
- Android使用WebView实现全屏切换播放网页视频功能