I am currently creating a application with the webview interface and i need to retrieve the var that is being stored in webview to the android activity
Here is the sample
<html>
<head>
<title></title>
<script>
var testing="hello";
</script>
</head>
<body></body>
</html>
I need to get the Hello string from the script into some String variable under the Android Activity
Thanks in advance.