Is it possible to pass a value to the URL mentioned in webView.loadUrl? something like this??
webView.loadUrl("file:///android_asset/www/index.html#value="+value);
or is there any way to pass a Java String value to the Javascript function in loadURL?
I found the solution.. posting it here for the sake of others 🙂
I added the following snippet of code in my Activity class which solved the problem,
Thanks all 🙂