I created a project for testing why a web page is not showing (blank page) on a WebView in Android 2.3 and below. The url that must be load is: https://www.geotrackline.com/android/middleware/TabletGeoFrame.php?user_id=503&method=load
That should return a web showing a map. The point is that the application works nice in Android 3.0 (tested in a GalaxyTab) and above (tested in a Galaxy Nexus).
This is my code in Java:
WebViewTestActivity.java:
WebView wb;
private static String MAP_URL = "https://www.geotrackline.com/android/middleware/TabletGeoFrame.php?user_id=503&method=load";
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
wb = (WebView)findViewById(R.id.webView);
WebSettings settings = wb.getSettings();
settings.setJavaScriptEnabled(true);
settings.setDomStorageEnabled(true);
settings.setJavaScriptCanOpenWindowsAutomatically(true);
settings.setBuiltInZoomControls(true);
settings.setSupportZoom(true);
settings.setGeolocationEnabled(true);
wb.loadUrl(MAP_URL);
wb.setWebChromeClient(new WebChromeClient(){
public boolean onConsoleMessage(ConsoleMessage cm) {
Log.e("onConsoleMessage", cm.message() + " -- From line "
+ cm.lineNumber() + " of "
+ cm.sourceId());
return true;
}
});
The console message is showing the next:
06-07 11:15:36.480: E/onConsoleMessage(21930): Uncaught SyntaxError: Unexpected token for -- From line 573 of https://www.geotrackline.com/android/middleware/js/GeoTracking.js
06-07 11:15:36.500: E/onConsoleMessage(21930): Uncaught ReferenceError: GeoTracking is not defined -- From line 15 of https://www.geotrackline.com/android/middleware/TabletGeoFrame.php?user_id=503&method=load
06-07 11:15:36.530: E/onConsoleMessage(21930): Uncaught TypeError: Cannot call method 'sendAJAX' of undefined -- From line 27 of https://www.geotrackline.com/android/middleware/TabletGeoFrame.php?user_id=503&method=load
And this is the response I get from the url in Android 2.3 and below:
<html>
<head>
<meta name="viewport" content="initial-scale=1.0, user-scalable=no" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title> :: geotracking :: </title>
<script type="text/javascript" src="http://maps.google.com/maps/api/js?libraries=geometry&sensor=false"></script>
<script language="javascript1.5" src="js/GeoTracking.js" ></script>
<script>
var user_id = '503';
var postn_id = "1323014511956";
var method="load";
var func="";
var map = new GeoTracking("content","","","");
</script>
<style>
body { margin:0; padding:0; }
</style>
</head>
<body onLoad='map.sendAJAX (method, user_id);'>
<div id="content" style="width:100%; height:100%"></div>
</body>
</html>
Any idea what's happening?
thanks in advance, and sorry for my english