Might be a silly question but I don't know how to include the src URL for my javascript into the Webview?
I build a huge html tag in code, passing in variables, and then print them using flot diagrams. The javascript files reside in my asset folder, so in static html page I simply refer to them as file:///android_asset/jquery.flot.js.
But how do I do that when it's all built up by code? This doesn't seem to work
"<script language=\"javascript\" type=\"text/javascript\" src=\"file:///android_asset/jquery.flot.js\"></script>" +
Regards