我使用WebView
为Android设计了一个简单的浏览器。一切正常,但是当我打开谷歌地图时,我的浏览器无法访问设备的当前位置。我不明白出了什么问题。
同样在清单中我已经给予了许可ACCESS FINE LOCATION
我的代码是:
@SuppressLint("SetJavaScriptEnabled")
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final WebView ourBrow=(WebView)findViewById(R.id.wvBrowser);
Button bgo=(Button)findViewById(R.id.button3);
Button res=(Button)findViewById(R.id.button4);
Button gfo=(Button)findViewById(R.id.button2);
ourBrow.getSettings().setJavaScriptEnabled(true);
try{
ourBrow.loadUrl("https://www.google.co.in/maps/dir///@20.3464436,85.8127819,15z");
}
catch(Exception e)
{
e.printStackTrace();
/*String myHtml = "<html><body>A very basic <b>WebView</b> demo!</body></html>";
ourBrow.loadData(myHtml, "text/html", null);*/
}
bgo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if(ourBrow.canGoBack())
ourBrow.goBack();
}
});
gfo.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
if(ourBrow.canGoForward())
ourBrow.goForward();
}
});
res.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
ourBrow.loadUrl("https://www.google.co.in/maps/dir///@20.3464436,85.8127819,15z");
}
});
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
}
答案 0 :(得分:3)
WebView
启用JavaScript
WebSettings.setJavaScriptEnabled(true);
该应用需要获得许可
ACCESS_FINE_LOCATION WebView
必须使用实现的自定义WebChromeClient
WebChromeClient.onGeolocationPermissionsShowPrompt()
。这种方法
WebView调用以获取披露用户的权限
JavaScript的位置。 (在浏览器的情况下,我们显示提示
对用户。)默认实现什么都不做,所以权限
永远不会获得,并且该位置永远不会传递给JavaScript。webView.setWebChromeClient(new WebChromeClient() {
public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissions.Callback callback) {
callback.invoke(origin, true, false);
}
});
地理位置使用数据库在会话之间保留缓存的位置和权限。使用WebSettings.setGeolocationDatabasePath(...)设置数据库的位置。如果未设置数据库的位置,则永久存储将不可用,但Geolocation将继续正常运行。要设置数据库的位置,请使用...
webView.getSettings().setGeolocationDatabasePath( context.getFilesDir().getPath() );