I have a webview in my activity and loaded contents for webview by following:
webview.loadUrl("file:///android_asset/description.html");
In description.html i have a reference for another html file located in the same place by following:
<a href='file:///android_asset/uml.html'>see UML diagram</a>
This was working absolutely fine in emulator but when i run it on my Galaxy S mobile, hyperlink does not work fine. Kindly help me. Is there any permission i am missing or something else?