I\'m currently having an issue with geolocation in a webview. I have a webapp. I\'m currently not using phonegap or any other mobile framework. I\'ve been unsuccessful at ge
Your problem may be the same problem with Android WebView using Geolocation.
I think HTML5 use local database, so you need add some HTML5 requirements like this
// HTML5 API flags
webView.getSettings().setAppCacheEnabled(true);
webView.getSettings().setDatabaseEnabled(true);
webView.getSettings().setDomStorageEnabled(true);