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=\"
I found a simple solution. Below is the code which is working
String s = "http://10.0.2.2/myhtml/add.php?bc=" + bc; myWebView.loadUrl(s);